aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2018-02-04 17:38:59 +0100
committerAlkalus <draknyte1@hotmail.com>2018-02-05 02:38:59 +1000
commit3e5a09f65c0e283f1eaf92ca5e8e39e22cb30f96 (patch)
tree4a80ddb48575215262a3d8dab8e0581521e5ffc0 /src/Java/gtPlusPlus/xmod
parenta58123c30f239513606cfecb49a8c4c06495b84f (diff)
downloadGT5-Unofficial-3e5a09f65c0e283f1eaf92ca5e8e39e22cb30f96.tar.gz
GT5-Unofficial-3e5a09f65c0e283f1eaf92ca5e8e39e22cb30f96.tar.bz2
GT5-Unofficial-3e5a09f65c0e283f1eaf92ca5e8e39e22cb30f96.zip
unknown symbol (#209)
Fixes a weird issue, due to decompiled source copy paste.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/api/gui/CONTAINER_SuperChest.java4
1 files changed, 2 insertions, 2 deletions
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;
}
}