diff --git a/common/buildcraft/core/blueprints/BptBuilderBlueprint.java b/common/buildcraft/core/blueprints/BptBuilderBlueprint.java index 9942f441..03e0c408 100644 --- a/common/buildcraft/core/blueprints/BptBuilderBlueprint.java +++ b/common/buildcraft/core/blueprints/BptBuilderBlueprint.java @@ -239,12 +239,11 @@ public class BptBuilderBlueprint extends BptBuilderBase { builtLocations.add(new BlockIndex(slot.x, slot.y, slot.z)); return slot; - } else { - // the block is not soft anymore, we can't build - // here. - // forget about it. - iterator.remove(); } + } else { + // the block is not soft anymore, we can't build + // here. Forget about it. + iterator.remove(); } } else { iterator.remove(); @@ -252,7 +251,6 @@ public class BptBuilderBlueprint extends BptBuilderBase { } else { iterator.remove(); } - } catch (Throwable t) { // Defensive code against errors in implementers t.printStackTrace();