From 3e5a09f65c0e283f1eaf92ca5e8e39e22cb30f96 Mon Sep 17 00:00:00 2001 From: Martin Robertz Date: Sun, 4 Feb 2018 17:38:59 +0100 Subject: unknown symbol (#209) Fixes a weird issue, due to decompiled source copy paste. --- src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_SuperChest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/gui') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_SuperChest.java b/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_SuperChest.java index 0c33baeda4..8caf8fe575 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_SuperChest.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_SuperChest.java @@ -39,7 +39,7 @@ public class CONTAINER_SuperChest extends GT_ContainerMetaTile_Machine { while (var2.hasNext()) { ICrafting var1 = (ICrafting) var2.next(); - var1.sendProgressBarUpdate(this, 100, this.mContent & '￿'); + var1.sendProgressBarUpdate(this, 100, this.mContent & 65535); var1.sendProgressBarUpdate(this, 101, this.mContent >>> 16); } @@ -54,7 +54,7 @@ public class CONTAINER_SuperChest extends GT_ContainerMetaTile_Machine { this.mContent = this.mContent & -65536 | par2; break; case 101 : - this.mContent = this.mContent & '￿' | par2 << 16; + this.mContent = this.mContent & 65535 | par2 << 16; } } -- cgit