From 0b2a7c1b97f264159cc4616f48f2537db137973f Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Tue, 17 Jul 2018 19:08:03 +1000 Subject: $ Fixed capes not displaying differently for other players. $ Fixed Charging Hatches displaying wrong inventory size. Closes #332. --- src/Java/gtPlusPlus/core/proxy/ClientProxy.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/Java/gtPlusPlus/core') 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 mCapeList = new HashSet(); 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."); - } + }*/ } } -- cgit