diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-09-25 18:34:40 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-09-25 18:34:40 +1000 |
commit | c2310a3e78c2980a5924c007eca2b3e192bc3fd8 (patch) | |
tree | 4b0a3da3433d5833b4126cd02f957b8a3d6e7c27 /src/Java/gtPlusPlus/core/common | |
parent | 35de0bbb41bd872800e62f34e02f4d859405d750 (diff) | |
download | GT5-Unofficial-c2310a3e78c2980a5924c007eca2b3e192bc3fd8.tar.gz GT5-Unofficial-c2310a3e78c2980a5924c007eca2b3e192bc3fd8.tar.bz2 GT5-Unofficial-c2310a3e78c2980a5924c007eca2b3e192bc3fd8.zip |
% 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.
Diffstat (limited to 'src/Java/gtPlusPlus/core/common')
-rw-r--r-- | src/Java/gtPlusPlus/core/common/CommonProxy.java | 13 |
1 files changed, 11 insertions, 2 deletions
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(); |