diff options
author | draknyte1 <draknyte1@hotmail.com> | 2017-02-14 22:53:38 +1000 |
---|---|---|
committer | draknyte1 <draknyte1@hotmail.com> | 2017-02-14 22:53:38 +1000 |
commit | 099ad908e559e0d4753fe265462b2263dc6f3ba3 (patch) | |
tree | f86580ef3ed0423680761dc3fe36f0e84363af2b /src/Java/gtPlusPlus/core/proxy | |
parent | c5a1e14c4e5ba4cd514c8f8a7050fe74de6183bb (diff) | |
download | GT5-Unofficial-099ad908e559e0d4753fe265462b2263dc6f3ba3.tar.gz GT5-Unofficial-099ad908e559e0d4753fe265462b2263dc6f3ba3.tar.bz2 GT5-Unofficial-099ad908e559e0d4753fe265462b2263dc6f3ba3.zip |
+ Added Plasma cells for all missing elements. (Adds a few extra, which will get removed).
+ Added a function to generate Plasma.
- Removed Bedrockium generation.
$ Fixed the chemical symbol for Thallium.
$ Fixed an issue where a String in ClientProxy.java was being set server side.
Diffstat (limited to 'src/Java/gtPlusPlus/core/proxy')
-rw-r--r-- | src/Java/gtPlusPlus/core/proxy/ClientProxy.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/proxy/ClientProxy.java b/src/Java/gtPlusPlus/core/proxy/ClientProxy.java index 11e7f9853a..c9dd231423 100644 --- a/src/Java/gtPlusPlus/core/proxy/ClientProxy.java +++ b/src/Java/gtPlusPlus/core/proxy/ClientProxy.java @@ -15,7 +15,10 @@ import api.player.client.ClientPlayerAPI; import cpw.mods.fml.client.registry.ClientRegistry; import cpw.mods.fml.client.registry.RenderingRegistry; import cpw.mods.fml.common.event.*; +import cpw.mods.fml.relauncher.Side; +import cpw.mods.fml.relauncher.SideOnly; +@SideOnly(Side.CLIENT) public class ClientProxy extends CommonProxy{ /*private final HashSet<String> mCapeList = new HashSet<String>(); @@ -26,6 +29,7 @@ public class ClientProxy extends CommonProxy{ } */ + @SideOnly(Side.CLIENT) public static String playerName = ""; @Override |