From 530d84ed415e3cc35715e697635e9f8fb06bbd5d Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sat, 24 Dec 2016 17:39:23 +1000 Subject: + Added a cape handler. + Gave the Helium Blob a name. + Gave core items the ability to have a name on yet another constructor. - Disabled the cape handler. % Minor improvements to the portable tanks. --- src/Java/gtPlusPlus/core/proxy/ClientProxy.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/Java/gtPlusPlus/core/proxy') diff --git a/src/Java/gtPlusPlus/core/proxy/ClientProxy.java b/src/Java/gtPlusPlus/core/proxy/ClientProxy.java index 26a2aa500a..276af700f0 100644 --- a/src/Java/gtPlusPlus/core/proxy/ClientProxy.java +++ b/src/Java/gtPlusPlus/core/proxy/ClientProxy.java @@ -14,6 +14,14 @@ import cpw.mods.fml.common.event.*; public class ClientProxy extends CommonProxy{ + /*private final HashSet mCapeList = new HashSet(); + private final CapeHandler mCapeRenderer; + + ClientProxy(){ + mCapeRenderer = new CapeHandler(mCapeList); + } + */ + @Override public void preInit(FMLPreInitializationEvent e) { // TODO Auto-generated method stub @@ -86,6 +94,11 @@ public class ClientProxy extends CommonProxy{ { } + + /*@SubscribeEvent + public void receiveRenderSpecialsEvent(net.minecraftforge.client.event.RenderPlayerEvent.Specials.Pre aEvent) { + mCapeRenderer.receiveRenderSpecialsEvent(aEvent); + }*/ -- cgit