From a5d5d1a4360671bc0d5c026c9b48e68cf7335f03 Mon Sep 17 00:00:00 2001 From: CovertJaguar Date: Sat, 23 Mar 2013 11:00:31 -0700 Subject: [PATCH] Fixed blueprint softblock error --- common/buildcraft/core/blueprints/BptBuilderTemplate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/buildcraft/core/blueprints/BptBuilderTemplate.java b/common/buildcraft/core/blueprints/BptBuilderTemplate.java index a2b28244..c8c07ea5 100644 --- a/common/buildcraft/core/blueprints/BptBuilderTemplate.java +++ b/common/buildcraft/core/blueprints/BptBuilderTemplate.java @@ -123,7 +123,7 @@ public class BptBuilderTemplate extends BptBuilderBase { BptSlot slot = list.getFirst(); // Note from CJ: I have no idea what this code is supposed to do, so I'm not touching it. - if (BuildCraftAPI.softBlock(slot.blockId) == BuildCraftAPI.softBlock(world.getBlockId(slot.x, slot.y, slot.z))) { + if (slot.blockId == world.getBlockId(slot.x, slot.y, slot.z)) { list.removeFirst(); } else if (slot.mode == Mode.ClearIfInvalid) { result = slot;