From 1d0a9022172b8f164db054fed2bfe4ac2cb6d204 Mon Sep 17 00:00:00 2001 From: viliml Date: Tue, 25 Jun 2013 19:31:28 +0300 Subject: [PATCH] Update BlockQuarry.java Fixes https://github.com/BuildCraft/BuildCraft/issues/972 --- common/buildcraft/factory/BlockQuarry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/buildcraft/factory/BlockQuarry.java b/common/buildcraft/factory/BlockQuarry.java index e4759733..430b039e 100644 --- a/common/buildcraft/factory/BlockQuarry.java +++ b/common/buildcraft/factory/BlockQuarry.java @@ -63,7 +63,7 @@ public class BlockQuarry extends BlockMachineRoot { if (j == 0 && i == 3) return textureFront; - if (i == j) + if (i == j && i>1) // Front can't be top or bottom. return textureFront; switch (i) {