This commit is contained in:
Anuken
2021-03-06 10:41:31 -05:00
parent 0d3be917b2
commit f7e8412b4b

View File

@@ -110,7 +110,7 @@ public class Placement{
public static void calculateBridges(Seq<BuildPlan> 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;
}