From 832da8f14611afcabbf4f3cc88fc335d3e3db614 Mon Sep 17 00:00:00 2001 From: Benjamin Durham <33912370+Bencey@users.noreply.github.com> Date: Wed, 1 Sep 2021 17:16:01 +1200 Subject: [PATCH 1/2] Guide shows wrong machine Enderlump 1 is made with grindstone not the enhanced crafting table --- .../slimefun4/implementation/setup/SlimefunItemSetup.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/SlimefunItemSetup.java b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/SlimefunItemSetup.java index 3d4c647a5..2cda647be 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/SlimefunItemSetup.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/SlimefunItemSetup.java @@ -34,7 +34,8 @@ import io.github.thebusybiscuit.slimefun4.implementation.items.androids.MinerAnd import io.github.thebusybiscuit.slimefun4.implementation.items.androids.ProgrammableAndroid; import io.github.thebusybiscuit.slimefun4.implementation.items.androids.WoodcutterAndroid; import io.github.thebusybiscuit.slimefun4.implementation.items.armor.ElytraCap; -import io.github.thebusybiscuit.slimefun4.implementation.items.armor.EnderBoots; +import io.github.thebusybiscuit.slimefun4.implementation.items.armor._lump +Boots; import io.github.thebusybiscuit.slimefun4.implementation.items.armor.FarmerShoes; import io.github.thebusybiscuit.slimefun4.implementation.items.armor.HazmatArmorPiece; import io.github.thebusybiscuit.slimefun4.implementation.items.armor.LongFallBoots; @@ -314,7 +315,7 @@ public final class SlimefunItemSetup { new ItemStack[] {SlimefunItems.MAGIC_LUMP_2, SlimefunItems.MAGIC_LUMP_2, null, SlimefunItems.MAGIC_LUMP_2, SlimefunItems.MAGIC_LUMP_2, null, null, null, null}) .register(plugin); - new SlimefunItem(categories.magicalResources, SlimefunItems.ENDER_LUMP_1, RecipeType.ENHANCED_CRAFTING_TABLE, + new SlimefunItem(categories.magicalResources, SlimefunItems.ENDER_LUMP_1, RecipeType.GRIND_STONE, new ItemStack[] {null, null, null, null, new ItemStack(Material.ENDER_EYE), null, null, null, null}, new SlimefunItemStack(SlimefunItems.ENDER_LUMP_1, 2)) .register(plugin); From 50b6377d5deb2c0f747e5b5fe80cf4fc0b184150 Mon Sep 17 00:00:00 2001 From: Benjamin Durham <33912370+Bencey@users.noreply.github.com> Date: Fri, 3 Sep 2021 11:16:45 +1200 Subject: [PATCH 2/2] Fixed broken import --- .../slimefun4/implementation/setup/SlimefunItemSetup.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/SlimefunItemSetup.java b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/SlimefunItemSetup.java index 2cda647be..29bfac960 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/SlimefunItemSetup.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/SlimefunItemSetup.java @@ -34,8 +34,7 @@ import io.github.thebusybiscuit.slimefun4.implementation.items.androids.MinerAnd import io.github.thebusybiscuit.slimefun4.implementation.items.androids.ProgrammableAndroid; import io.github.thebusybiscuit.slimefun4.implementation.items.androids.WoodcutterAndroid; import io.github.thebusybiscuit.slimefun4.implementation.items.armor.ElytraCap; -import io.github.thebusybiscuit.slimefun4.implementation.items.armor._lump -Boots; +import io.github.thebusybiscuit.slimefun4.implementation.items.armor.EnderBoots; import io.github.thebusybiscuit.slimefun4.implementation.items.armor.FarmerShoes; import io.github.thebusybiscuit.slimefun4.implementation.items.armor.HazmatArmorPiece; import io.github.thebusybiscuit.slimefun4.implementation.items.armor.LongFallBoots;