diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-24 17:39:23 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-24 17:39:23 +1000 |
commit | 530d84ed415e3cc35715e697635e9f8fb06bbd5d (patch) | |
tree | f872cbcc0c5b4a712ffcc03df8708accb50463df /src/Java/gtPlusPlus/core/proxy | |
parent | 0cfe59a8a48fa4c8dfa12043489825ffa9fadd8c (diff) | |
download | GT5-Unofficial-530d84ed415e3cc35715e697635e9f8fb06bbd5d.tar.gz GT5-Unofficial-530d84ed415e3cc35715e697635e9f8fb06bbd5d.tar.bz2 GT5-Unofficial-530d84ed415e3cc35715e697635e9f8fb06bbd5d.zip |
+ 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.
Diffstat (limited to 'src/Java/gtPlusPlus/core/proxy')
-rw-r--r-- | src/Java/gtPlusPlus/core/proxy/ClientProxy.java | 13 |
1 files changed, 13 insertions, 0 deletions
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<String> mCapeList = new HashSet<String>(); + 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); + }*/ |