diff --git a/core/src/mindustry/input/Placement.java b/core/src/mindustry/input/Placement.java index 21532f21c7..99091fc7ef 100644 --- a/core/src/mindustry/input/Placement.java +++ b/core/src/mindustry/input/Placement.java @@ -110,7 +110,7 @@ public class Placement{ public static void calculateBridges(Seq plans, ItemBridge bridge){ //check for orthogonal placement + unlocked state - if(!(plans.first().x == plans.peek().x || plans.first().y == plans.peek().y || !bridge.unlockedNow())){ + if(!(plans.first().x == plans.peek().x || plans.first().y == plans.peek().y) || !bridge.unlockedNow()){ return; }