diff options
-rw-r--r-- | src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java b/src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java index b33365d01e..84aa67b5cf 100644 --- a/src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java +++ b/src/main/java/com/github/technus/tectech/thing/block/RenderEyeOfHarmony.java @@ -272,7 +272,7 @@ public class RenderEyeOfHarmony extends TileEntitySpecialRenderer { } { - texture = block.getIcon(3, meta); + texture = block.getIcon(5, meta); minU = texture.getMinU(); maxU = texture.getMaxU(); @@ -300,17 +300,17 @@ public class RenderEyeOfHarmony extends TileEntitySpecialRenderer { } { - texture = block.getIcon(5, meta); + texture = block.getIcon(3, meta); minU = texture.getMinU(); maxU = texture.getMaxU(); minV = texture.getMinV(); maxV = texture.getMaxV(); - tes.addVertexWithUV(X[0], Y[0], Z[0], maxU, maxV); - tes.addVertexWithUV(X[1], Y[1], Z[1], maxU, minV); - tes.addVertexWithUV(X[2], Y[2], Z[2], minU, minV); - tes.addVertexWithUV(X[3], Y[3], Z[3], minU, maxV); + tes.addVertexWithUV(X[2], Y[2], Z[2], maxU, maxV); + tes.addVertexWithUV(X[3], Y[3], Z[3], maxU, minV); + tes.addVertexWithUV(X[0], Y[0], Z[0], minU, minV); + tes.addVertexWithUV(X[1], Y[1], Z[1], minU, maxV); } tes.draw(); |