diff --git a/core/src/mindustry/input/MobileInput.java b/core/src/mindustry/input/MobileInput.java index 0f1ef51a69..c452cb50a9 100644 --- a/core/src/mindustry/input/MobileInput.java +++ b/core/src/mindustry/input/MobileInput.java @@ -415,7 +415,7 @@ public class MobileInput extends InputHandler implements GestureListener{ //draw last placed plan if(!plan.breaking && plan == lastPlaced && plan.block != null){ - int rot = block == null ? rotation : block.planRotation(rotation); + int rot = plan.block.planRotation(rotation); boolean valid = validPlace(tile.x, tile.y, plan.block, rot); Draw.mixcol(); plan.block.drawPlace(tile.x, tile.y, rot, valid);