aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/proxy/ClientProxy.java
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-07-17 19:08:03 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-07-17 19:08:03 +1000
commit0b2a7c1b97f264159cc4616f48f2537db137973f (patch)
treeebfbe6572d536854ecc88154debbf4460c62c4bd /src/Java/gtPlusPlus/core/proxy/ClientProxy.java
parent93ebe8f61c8318f18ffd33e4b60347ed366812d5 (diff)
downloadGT5-Unofficial-0b2a7c1b97f264159cc4616f48f2537db137973f.tar.gz
GT5-Unofficial-0b2a7c1b97f264159cc4616f48f2537db137973f.tar.bz2
GT5-Unofficial-0b2a7c1b97f264159cc4616f48f2537db137973f.zip
$ Fixed capes not displaying differently for other players.
$ Fixed Charging Hatches displaying wrong inventory size. Closes #332.
Diffstat (limited to 'src/Java/gtPlusPlus/core/proxy/ClientProxy.java')
-rw-r--r--src/Java/gtPlusPlus/core/proxy/ClientProxy.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/Java/gtPlusPlus/core/proxy/ClientProxy.java b/src/Java/gtPlusPlus/core/proxy/ClientProxy.java
index 0245530a02..d665fc31ca 100644
--- a/src/Java/gtPlusPlus/core/proxy/ClientProxy.java
+++ b/src/Java/gtPlusPlus/core/proxy/ClientProxy.java
@@ -59,13 +59,12 @@ import net.minecraft.entity.Entity;
public class ClientProxy extends CommonProxy implements Runnable{
- private final HashSet<String> mCapeList = new HashSet<String>();
private final GTPP_CapeRenderer mCapeRenderer;
@SideOnly(Side.CLIENT)
public static boolean mFancyGraphics = false;
public ClientProxy(){
- mCapeRenderer = new GTPP_CapeRenderer(mCapeList);
+ mCapeRenderer = new GTPP_CapeRenderer();
//Get Graphics Mode.
mFancyGraphics = Minecraft.isFancyGraphicsEnabled();
}
@@ -204,7 +203,7 @@ public class ClientProxy extends CommonProxy implements Runnable{
public void onPreLoad() {
- if (ConfigSwitches.enableCustomCapes){
+ /*if (ConfigSwitches.enableCustomCapes){
String arr$[] = {
"draknyte1", "fobius"
};
@@ -214,12 +213,12 @@ public class ClientProxy extends CommonProxy implements Runnable{
mCapeList.add(tName.toLowerCase());
}
(new Thread(this)).start();
- }
+ }*/
}
@Override
public void run() {
- try {
+ /*try {
if (ConfigSwitches.enableCustomCapes){
Logger.INFO("GT++ Mod: Downloading Cape List.");
@SuppressWarnings("resource")
@@ -233,7 +232,7 @@ public class ClientProxy extends CommonProxy implements Runnable{
}
} catch (Throwable e) {
Logger.INFO("Failed to download GT++ cape list.");
- }
+ }*/
}
}