aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2021-12-15 15:33:28 +0100
committerGitHub <noreply@github.com>2021-12-15 15:33:28 +0100
commitec6c126e1d41239864405782eb71fda645ebd469 (patch)
tree50517eb154e56d2969542041fcf792b3a86572aa /src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures
parent868ddab78797403d58dbc84d357f792926e94f42 (diff)
parent2a7a8a3dcad8b14c4efa53cffc62fd71c36f7ce3 (diff)
downloadGT5-Unofficial-ec6c126e1d41239864405782eb71fda645ebd469.tar.gz
GT5-Unofficial-ec6c126e1d41239864405782eb71fda645ebd469.tar.bz2
GT5-Unofficial-ec6c126e1d41239864405782eb71fda645ebd469.zip
Merge pull request #68 from GTNewHorizons/Multi-fix
Multi fix
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGrinderMultiblock.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGrinderMultiblock.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGrinderMultiblock.java
index 962f981d3b..b254fdbc1e 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGrinderMultiblock.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGrinderMultiblock.java
@@ -85,7 +85,7 @@ public class TexturesGrinderMultiblock {
public IIcon handleCasingsGT(final IBlockAccess aWorld, final int xCoord, final int yCoord, final int zCoord, final int aSide, final GregtechMetaCasingBlocks5 ii) {
final int tMeta = aWorld.getBlockMetadata(xCoord, yCoord, zCoord);
- if (tMeta != 0) {
+ if (tMeta != 1) {
return GregtechMetaCasingBlocks5.getStaticIcon(aSide, tMeta);
}
int tInvertLeftRightMod = aSide % 2 * 2 - 1;