Skip to content

Commit 0d9df0c

Browse files
committed
Fixed prod bug
1 parent a1ce06b commit 0d9df0c

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.env

Lines changed: 0 additions & 3 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ classes/
1616
.metadata
1717
.vscode
1818
.settings
19-
*.launch
19+
*.launch
20+
21+
.env

common/src/main/java/com/cak/pattern_schematics/mixin/CreateCreativeModeTabMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
@Mixin(value = CreateCreativeModeTab.class, remap = false)
1414
public class CreateCreativeModeTabMixin {
1515

16-
@Redirect(method = "addItems", at = @At(value = "INVOKE", target = "Lnet/minecraft/world/item/Item;fillItemCategory(Lnet/minecraft/world/item/CreativeModeTab;Lnet/minecraft/core/NonNullList;)V"))
16+
@Redirect(method = "addItems", at = @At(value = "INVOKE", target = "Lnet/minecraft/world/item/Item;fillItemCategory(Lnet/minecraft/world/item/CreativeModeTab;Lnet/minecraft/core/NonNullList;)V", remap = true))
1717
private void addAdditionalItemInject(Item instance, CreativeModeTab category, NonNullList<ItemStack> items) {
1818
instance.fillItemCategory(category, items);
1919

0 commit comments

Comments
 (0)