From 4140196b5fbf9d562aac74c03a39987e1801e99e Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Mon, 14 Nov 2016 02:59:55 +1000 Subject: % Changed the way Forestry blocks are handled, should stop overrides of the default Alveary components. $ Changed recipe checking of the Alloy Smelter, instead of only checking the first two slots, it now will check a dynamic size. Should fix #36. --- src/Java/gtPlusPlus/xmod/forestry/bees/items/FR_ItemRegistry.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/forestry/bees/items') diff --git a/src/Java/gtPlusPlus/xmod/forestry/bees/items/FR_ItemRegistry.java b/src/Java/gtPlusPlus/xmod/forestry/bees/items/FR_ItemRegistry.java index 51d0dea31b..f3d751690e 100644 --- a/src/Java/gtPlusPlus/xmod/forestry/bees/items/FR_ItemRegistry.java +++ b/src/Java/gtPlusPlus/xmod/forestry/bees/items/FR_ItemRegistry.java @@ -41,8 +41,6 @@ public class FR_ItemRegistry { public static MB_ItemFrame hiveFrameClay; public static MB_ItemFrame hiveFrameNova; - //Alveary Stuff - public static FR_BlockAlveary alveary; public static void Register() { @@ -68,7 +66,8 @@ public class FR_ItemRegistry { hiveFrameSoul = new MB_ItemFrame(MB_FrameType.SOUL, EnumRarity.common, ""); hiveFrameClay = new MB_ItemFrame(MB_FrameType.CLAY, EnumRarity.common, ""); hiveFrameNova = new MB_ItemFrame(MB_FrameType.NOVA, EnumRarity.epic, "A Creative Only Frame."); - if (CORE.configSwitches.enableCustomAlvearyBlocks){ + if (CORE.configSwitches.enableCustomAlvearyBlocks){//Alveary Stuff + FR_BlockAlveary alveary; alveary = registerBlock(new FR_BlockAlveary(), ItemBlockForestry.class, "alveary"); } } -- cgit