From 099ad908e559e0d4753fe265462b2263dc6f3ba3 Mon Sep 17 00:00:00 2001 From: draknyte1 Date: Tue, 14 Feb 2017 22:53:38 +1000 Subject: + 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. --- src/Java/gtPlusPlus/core/proxy/ClientProxy.java | 4 ++++ 1 file changed, 4 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 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 mCapeList = new HashSet(); @@ -26,6 +29,7 @@ public class ClientProxy extends CommonProxy{ } */ + @SideOnly(Side.CLIENT) public static String playerName = ""; @Override -- cgit