diff options
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java b/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java index f48d0ffec2..9bdf9a83dd 100644 --- a/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java +++ b/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java @@ -7,6 +7,7 @@ import cpw.mods.fml.common.Optional; import gtPlusPlus.core.lib.LoadedMods; import gtPlusPlus.core.util.reflect.ReflectionUtils; import gtPlusPlus.xmod.forestry.bees.custom.GTPP_Bees; +import gtPlusPlus.xmod.forestry.bees.custom.GTPP_Branch_Definition; import gtPlusPlus.xmod.forestry.bees.items.FR_ItemRegistry; import gtPlusPlus.xmod.forestry.bees.recipe.FR_Gregtech_Recipes; import net.minecraft.block.Block; @@ -16,16 +17,13 @@ public class HANDLER_FR { public static void preInit(){ if (LoadedMods.Forestry){ - FR_ItemRegistry.Register(); - } - - new GTPP_Bees(); - + FR_ItemRegistry.Register(); + } } public static void Init(){ if (LoadedMods.Forestry){ - + new GTPP_Bees(); } } |