From c279b74f77e9d3ce816bdede0abc2b6f0c0a5f9e Mon Sep 17 00:00:00 2001 From: jansheikkinen Date: Thu, 16 Mar 2023 04:41:47 -0500 Subject: [PATCH 1/2] restore recipes for chest boats --- .../boatcontainer/recipes/acacia_chest_boat.json | 16 ++++++++++++++++ .../recipes/acacia_ender_chest_boat.json | 16 ++++++++++++++++ .../recipes/acacia_furnace_boat.json | 16 ++++++++++++++++ .../boatcontainer/recipes/birch_chest_boat.json | 16 ++++++++++++++++ .../recipes/birch_ender_chest_boat.json | 16 ++++++++++++++++ .../recipes/birch_furnace_boat.json | 16 ++++++++++++++++ .../recipes/dark_oak_chest_boat.json | 16 ++++++++++++++++ .../recipes/dark_oak_ender_chest_boat.json | 16 ++++++++++++++++ .../recipes/dark_oak_furnace_boat.json | 16 ++++++++++++++++ .../boatcontainer/recipes/jungle_chest_boat.json | 16 ++++++++++++++++ .../recipes/jungle_ender_chest_boat.json | 16 ++++++++++++++++ .../recipes/jungle_furnace_boat.json | 16 ++++++++++++++++ .../boatcontainer/recipes/oak_chest_boat.json | 16 ++++++++++++++++ .../recipes/oak_ender_chest_boat.json | 16 ++++++++++++++++ .../boatcontainer/recipes/oak_furnace_boat.json | 16 ++++++++++++++++ .../boatcontainer/recipes/spruce_chest_boat.json | 16 ++++++++++++++++ .../recipes/spruce_ender_chest_boat.json | 16 ++++++++++++++++ .../recipes/spruce_furnace_boat.json | 16 ++++++++++++++++ .../recipes/stripped_bamboo_chest_boat.json | 16 ++++++++++++++++ 19 files changed, 304 insertions(+) create mode 100644 src/main/resources/data/boatcontainer/recipes/acacia_chest_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/acacia_ender_chest_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/acacia_furnace_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/birch_chest_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/birch_ender_chest_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/birch_furnace_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/dark_oak_chest_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/dark_oak_ender_chest_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/dark_oak_furnace_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/jungle_chest_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/jungle_ender_chest_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/jungle_furnace_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/oak_chest_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/oak_ender_chest_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/oak_furnace_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/spruce_chest_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/spruce_ender_chest_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/spruce_furnace_boat.json create mode 100644 src/main/resources/data/boatcontainer/recipes/stripped_bamboo_chest_boat.json diff --git a/src/main/resources/data/boatcontainer/recipes/acacia_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/acacia_chest_boat.json new file mode 100644 index 0000000..6c1116d --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/acacia_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + { + "item": "minecraft:chest" + }, + { + "item": "minecraft:acacia_boat" + } + ], + "result": { + "item": "boatcontainer:acacia_chest_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/acacia_ender_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/acacia_ender_chest_boat.json new file mode 100644 index 0000000..f59f9c0 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/acacia_ender_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "ender_chest_boat", + "ingredients": [ + { + "item": "minecraft:ender_chest" + }, + { + "item": "minecraft:acacia_boat" + } + ], + "result": { + "item": "boatcontainer:acacia_ender_chest_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/acacia_furnace_boat.json b/src/main/resources/data/boatcontainer/recipes/acacia_furnace_boat.json new file mode 100644 index 0000000..ce31276 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/acacia_furnace_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "furnace_boat", + "ingredients": [ + { + "item": "minecraft:furnace" + }, + { + "item": "minecraft:acacia_boat" + } + ], + "result": { + "item": "boatcontainer:acacia_furnace_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/birch_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/birch_chest_boat.json new file mode 100644 index 0000000..2fd06e5 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/birch_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + { + "item": "minecraft:chest" + }, + { + "item": "minecraft:birch_boat" + } + ], + "result": { + "item": "boatcontainer:birch_chest_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/birch_ender_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/birch_ender_chest_boat.json new file mode 100644 index 0000000..048b412 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/birch_ender_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "ender_chest_boat", + "ingredients": [ + { + "item": "minecraft:ender_chest" + }, + { + "item": "minecraft:birch_boat" + } + ], + "result": { + "item": "boatcontainer:birch_ender_chest_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/birch_furnace_boat.json b/src/main/resources/data/boatcontainer/recipes/birch_furnace_boat.json new file mode 100644 index 0000000..5735e05 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/birch_furnace_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "furnace_boat", + "ingredients": [ + { + "item": "minecraft:furnace" + }, + { + "item": "minecraft:birch_boat" + } + ], + "result": { + "item": "boatcontainer:birch_furnace_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/dark_oak_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/dark_oak_chest_boat.json new file mode 100644 index 0000000..84d5dc4 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/dark_oak_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + { + "item": "minecraft:chest" + }, + { + "item": "minecraft:dark_oak_boat" + } + ], + "result": { + "item": "boatcontainer:dark_oak_chest_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/dark_oak_ender_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/dark_oak_ender_chest_boat.json new file mode 100644 index 0000000..c5ac25f --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/dark_oak_ender_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "ender_chest_boat", + "ingredients": [ + { + "item": "minecraft:ender_chest" + }, + { + "item": "minecraft:dark_oak_boat" + } + ], + "result": { + "item": "boatcontainer:dark_oak_ender_chest_boat", + "count": 1 + } +} diff --git a/src/main/resources/data/boatcontainer/recipes/dark_oak_furnace_boat.json b/src/main/resources/data/boatcontainer/recipes/dark_oak_furnace_boat.json new file mode 100644 index 0000000..d82c0ff --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/dark_oak_furnace_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "furnace_boat", + "ingredients": [ + { + "item": "minecraft:furnace" + }, + { + "item": "minecraft:dark_oak_boat" + } + ], + "result": { + "item": "boatcontainer:dark_oak_furnace_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/jungle_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/jungle_chest_boat.json new file mode 100644 index 0000000..40b59dc --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/jungle_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + { + "item": "minecraft:chest" + }, + { + "item": "minecraft:jungle_boat" + } + ], + "result": { + "item": "boatcontainer:jungle_chest_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/jungle_ender_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/jungle_ender_chest_boat.json new file mode 100644 index 0000000..49a1caa --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/jungle_ender_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "ender_chest_boat", + "ingredients": [ + { + "item": "minecraft:ender_chest" + }, + { + "item": "minecraft:jungle_boat" + } + ], + "result": { + "item": "boatcontainer:jungle_ender_chest_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/jungle_furnace_boat.json b/src/main/resources/data/boatcontainer/recipes/jungle_furnace_boat.json new file mode 100644 index 0000000..25ee960 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/jungle_furnace_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "furnace_boat", + "ingredients": [ + { + "item": "minecraft:furnace" + }, + { + "item": "minecraft:jungle_boat" + } + ], + "result": { + "item": "boatcontainer:jungle_furnace_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/oak_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/oak_chest_boat.json new file mode 100644 index 0000000..c80a952 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/oak_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + { + "item": "minecraft:chest" + }, + { + "item": "minecraft:oak_boat" + } + ], + "result": { + "item": "boatcontainer:oak_chest_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/oak_ender_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/oak_ender_chest_boat.json new file mode 100644 index 0000000..3c9c5cb --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/oak_ender_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "ender_chest_boat", + "ingredients": [ + { + "item": "minecraft:ender_chest" + }, + { + "item": "minecraft:oak_boat" + } + ], + "result": { + "item": "boatcontainer:oak_ender_chest_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/oak_furnace_boat.json b/src/main/resources/data/boatcontainer/recipes/oak_furnace_boat.json new file mode 100644 index 0000000..820f1f8 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/oak_furnace_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "furnace_boat", + "ingredients": [ + { + "item": "minecraft:furnace" + }, + { + "item": "minecraft:oak_boat" + } + ], + "result": { + "item": "boatcontainer:oak_furnace_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/spruce_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/spruce_chest_boat.json new file mode 100644 index 0000000..ec75744 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/spruce_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + { + "item": "minecraft:chest" + }, + { + "item": "minecraft:spruce_boat" + } + ], + "result": { + "item": "boatcontainer:spruce_chest_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/spruce_ender_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/spruce_ender_chest_boat.json new file mode 100644 index 0000000..8b08601 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/spruce_ender_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "ender_chest_boat", + "ingredients": [ + { + "item": "minecraft:ender_chest" + }, + { + "item": "minecraft:spruce_boat" + } + ], + "result": { + "item": "boatcontainer:spruce_ender_chest_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/spruce_furnace_boat.json b/src/main/resources/data/boatcontainer/recipes/spruce_furnace_boat.json new file mode 100644 index 0000000..325f0b0 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/spruce_furnace_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "furnace_boat", + "ingredients": [ + { + "item": "minecraft:furnace" + }, + { + "item": "minecraft:spruce_boat" + } + ], + "result": { + "item": "boatcontainer:spruce_furnace_boat", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/boatcontainer/recipes/stripped_bamboo_chest_boat.json b/src/main/resources/data/boatcontainer/recipes/stripped_bamboo_chest_boat.json new file mode 100644 index 0000000..a117b34 --- /dev/null +++ b/src/main/resources/data/boatcontainer/recipes/stripped_bamboo_chest_boat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + { + "item": "minecraft:chest" + }, + { + "item": "twigs:stripped_bamboo_boat" + } + ], + "result": { + "item": "boatcontainer:stripped_bamboo_chest_boat", + "count": 1 + } +} \ No newline at end of file From 03e9d9f89d3a5261639d46eb4798f1813fd1b4a1 Mon Sep 17 00:00:00 2001 From: jansheikkinen Date: Thu, 16 Mar 2023 07:18:22 -0500 Subject: [PATCH 2/2] merge some code from 1.19 to 1.18 and ACTUALLY restore chest boat recipes --- build.gradle | 4 ++-- gradle.properties | 4 ++-- .../client/renderer/AbstractBoatBlockRenderer.java | 2 +- .../common/entity/EnderChestBoatEntity.java | 5 ++--- .../common/entity/StorageBoatEntity.java | 3 +-- .../boatcontainer/common/registry/ModItems.java | 13 +++++++++++-- .../resources/assets/boatcontainer/lang/de_de.json | 2 +- src/main/resources/boatcontainer.mixins.json | 4 ---- src/main/resources/fabric.mod.json | 1 - 9 files changed, 20 insertions(+), 18 deletions(-) diff --git a/build.gradle b/build.gradle index 6030dec..e163cac 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '0.10-SNAPSHOT' + id 'fabric-loom' version '0.12-SNAPSHOT' id 'maven-publish' } @@ -80,7 +80,7 @@ publishing { // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. repositories { - + // Add repositories to publish to here. // Notice: This block does NOT have the same function as the block in the top level. // The repositories here will be used for publishing your artifact, not for diff --git a/gradle.properties b/gradle.properties index 87b75f9..9321df5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,10 +4,10 @@ org.gradle.jvmargs=-Xmx4G # Fabric Properties # check these on https://fabricmc.net/versions.html minecraft_version=1.18.2 - loader_version=0.13.3 + loader_version=0.14.17 # Mod Properties - mod_version = 1.2.3 + mod_version = 1.2.4 maven_group = de.kxmischesdomi archives_base_name = boatcontainer diff --git a/src/main/java/de/kxmischesdomi/boatcontainer/client/renderer/AbstractBoatBlockRenderer.java b/src/main/java/de/kxmischesdomi/boatcontainer/client/renderer/AbstractBoatBlockRenderer.java index b2ad32c..9517f73 100644 --- a/src/main/java/de/kxmischesdomi/boatcontainer/client/renderer/AbstractBoatBlockRenderer.java +++ b/src/main/java/de/kxmischesdomi/boatcontainer/client/renderer/AbstractBoatBlockRenderer.java @@ -65,4 +65,4 @@ public void render(Boat boatEntity, float f, float g, PoseStack matrixStack, Mul } -} \ No newline at end of file +} diff --git a/src/main/java/de/kxmischesdomi/boatcontainer/common/entity/EnderChestBoatEntity.java b/src/main/java/de/kxmischesdomi/boatcontainer/common/entity/EnderChestBoatEntity.java index 31974c7..a6f9a96 100644 --- a/src/main/java/de/kxmischesdomi/boatcontainer/common/entity/EnderChestBoatEntity.java +++ b/src/main/java/de/kxmischesdomi/boatcontainer/common/entity/EnderChestBoatEntity.java @@ -29,7 +29,7 @@ * @author KxmischesDomi | https://github.com/kxmischesdomi * @since 1.0 */ -public class EnderChestBoatEntity extends BoatWithBlockEntity implements HasCustomInventoryScreen { +public class EnderChestBoatEntity extends BoatWithBlockEntity { public EnderChestBoatEntity(EntityType entityType, Level world) { super(entityType, world); @@ -43,7 +43,6 @@ public EnderChestBoatEntity(Level world) { super(ModEntities.ENDER_CHEST_BOAT, world); } - @Override public void openCustomInventoryScreen(Player player) { openEnderchest(player); } @@ -59,7 +58,7 @@ private void openEnderchest(Player player) { player.openMenu(new SimpleMenuProvider((syncId, inventory, playerx) -> { return ChestMenu.threeRows(syncId, inventory, enderChestInventory); }, new TranslatableComponent(this.getType().getDescriptionId()))); - } + } @Override public ItemStack getPickResult() { diff --git a/src/main/java/de/kxmischesdomi/boatcontainer/common/entity/StorageBoatEntity.java b/src/main/java/de/kxmischesdomi/boatcontainer/common/entity/StorageBoatEntity.java index 9f0564d..9e8e9d9 100644 --- a/src/main/java/de/kxmischesdomi/boatcontainer/common/entity/StorageBoatEntity.java +++ b/src/main/java/de/kxmischesdomi/boatcontainer/common/entity/StorageBoatEntity.java @@ -30,7 +30,7 @@ * @author KxmischesDomi | https://github.com/kxmischesdomi * @since 1.0 */ -public abstract class StorageBoatEntity extends BoatWithBlockEntity implements Container, MenuProvider, HasCustomInventoryScreen { +public abstract class StorageBoatEntity extends BoatWithBlockEntity implements Container, MenuProvider { private NonNullList inventory; private ResourceLocation lootTableId; @@ -46,7 +46,6 @@ public StorageBoatEntity(EntityType entityType, Level world, dou this.inventory = NonNullList.withSize(36, ItemStack.EMPTY); } - @Override public void openCustomInventoryScreen(Player player) { player.openMenu(this); } diff --git a/src/main/java/de/kxmischesdomi/boatcontainer/common/registry/ModItems.java b/src/main/java/de/kxmischesdomi/boatcontainer/common/registry/ModItems.java index a97491c..7980cf2 100644 --- a/src/main/java/de/kxmischesdomi/boatcontainer/common/registry/ModItems.java +++ b/src/main/java/de/kxmischesdomi/boatcontainer/common/registry/ModItems.java @@ -42,6 +42,10 @@ public class ModItems { public static CustomBoatItem[] FURNACE_BOAT = registerBoat("furnace_boat", ModEntities.FURNACE_BOAT, FurnaceBoatEntity::new); public static void init() { + for (CustomBoatItem item : CHEST_BOAT) { + addRecipe(item, "chest_boat", new ResourceLocation("chest")); + } + for (CustomBoatItem item : ENDER_CHEST_BOAT) { addRecipe(item, "ender_chest_boat", new ResourceLocation("ender_chest")); @@ -60,19 +64,24 @@ private static void addRecipe(CustomBoatItem item, String name, ResourceLocation } public static CustomBoatItem[] registerBoat(String name, EntityType type, Function5, Level, Double, Double, Double, ? extends OverriddenBoatEntity> instanceCreator) { + return registerBoat(name, type, instanceCreator, false); + } + + public static CustomBoatItem[] registerBoat(String name, EntityType type, Function5, Level, Double, Double, Double, ? extends OverriddenBoatEntity> instanceCreator, boolean hideItem) { List list = new ArrayList<>(); for (Type value : Type.values()) { try { Properties settings = new Properties().stacksTo(1); - settings.tab(CreativeModeTab.TAB_TRANSPORTATION); + if (!hideItem) { + settings.tab(CreativeModeTab.TAB_TRANSPORTATION); + } ResourceLocation originBoatLocation = new ResourceLocation(value.getName() + "_" + name); CustomBoatItem item = register(originBoatLocation.getPath(), new CustomBoatItem(type, instanceCreator, value, settings)); list.add(item); - registerBoatDispenserBehavior(item, type, instanceCreator); } catch (Exception exception) { // Dont block mod loading for issues with other mods diff --git a/src/main/resources/assets/boatcontainer/lang/de_de.json b/src/main/resources/assets/boatcontainer/lang/de_de.json index 2523414..83a8c61 100644 --- a/src/main/resources/assets/boatcontainer/lang/de_de.json +++ b/src/main/resources/assets/boatcontainer/lang/de_de.json @@ -27,4 +27,4 @@ "entity.boatcontainer.ender_chest_boat": "Boot mit Endertruhe", "entity.boatcontainer.furnace_boat": "Boot mit Ofen" -} \ No newline at end of file +} diff --git a/src/main/resources/boatcontainer.mixins.json b/src/main/resources/boatcontainer.mixins.json index 45f3201..c81e2d0 100644 --- a/src/main/resources/boatcontainer.mixins.json +++ b/src/main/resources/boatcontainer.mixins.json @@ -6,12 +6,8 @@ "mixins": [ "BoatEntityAccessor", "BoatEntityMixin", - "ServerGamePacketListenerImplMixin", "RecipeManagerMixin" ], - "client": [ - "client.MultiPlayerGameModeMixin" - ], "injectors": { "defaultRequire": 1 } diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 2949289..cec1dd7 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -31,7 +31,6 @@ ], "depends": { - "fabricloader": ">=0.11.3", "minecraft": "1.18.x" } }