From c2310a3e78c2980a5924c007eca2b3e192bc3fd8 Mon Sep 17 00:00:00 2001 From: Alkalus Date: Mon, 25 Sep 2017 18:34:40 +1000 Subject: % Sulfuric potions now do no damage to anyone wearing a hazmat suit. $ Fixed entity IDs during registration. $ Fixed Sulfuric Potion not rendering. $ Fixed Fluid Canner recipes for Sulfuric potion not registering. --- src/Java/gtPlusPlus/core/common/CommonProxy.java | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'src/Java/gtPlusPlus/core/common/CommonProxy.java') diff --git a/src/Java/gtPlusPlus/core/common/CommonProxy.java b/src/Java/gtPlusPlus/core/common/CommonProxy.java index 6f885fadfe..91077abbed 100644 --- a/src/Java/gtPlusPlus/core/common/CommonProxy.java +++ b/src/Java/gtPlusPlus/core/common/CommonProxy.java @@ -64,8 +64,14 @@ public class CommonProxy { } AddToCreativeTab.initialiseTabs(); COMPAT_IntermodStaging.preInit(); - //Apparently I should do this here. Might put it in Init for a test. - //Growthcraft_Handler.run(); + + //Registration of entities and renderers + Utils.LOG_INFO("[Proxy] Calling Entity registrator."); + registerEntities(); + Utils.LOG_INFO("[Proxy] Calling Tile Entity registrator."); + registerTileEntities(); + + } public void init(final FMLInitializationEvent e) { @@ -81,6 +87,9 @@ public class CommonProxy { //Block Handler for all events. MinecraftForge.EVENT_BUS.register(new BlockEventHandler()); + Utils.LOG_INFO("[Proxy] Calling Render registrator."); + registerRenderThings(); + //Compat Handling COMPAT_HANDLER.registerMyModsOreDictEntries(); COMPAT_HANDLER.intermodOreDictionarySupport(); -- cgit