From a9331d4752a2ce0c897e4dfa06761a7e41f3a0fb Mon Sep 17 00:00:00 2001 From: Anuken Date: Mon, 28 Oct 2024 17:08:34 -0400 Subject: [PATCH] Fixed bridge placement annoyance (Erekir) --- core/src/mindustry/input/Placement.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/input/Placement.java b/core/src/mindustry/input/Placement.java index 7e484d37ce..5274692aaa 100644 --- a/core/src/mindustry/input/Placement.java +++ b/core/src/mindustry/input/Placement.java @@ -217,7 +217,7 @@ public class Placement{ Boolf placeable = plan -> (plan.placeable(player.team()) || (plan.tile() != null && plan.tile().block() == plan.block)) && //don't count the same block as inaccessible - !(plan.build() != null && plan.build().rotation != plan.rotation && avoid.get(plan.tile().block())); + !(plan != plans.first() && plan.build() != null && plan.build().rotation != plan.rotation && avoid.get(plan.tile().block())); var result = plans1.clear();