From 8474c921ec5675f4bafada5cc371954f4339a23a Mon Sep 17 00:00:00 2001 From: buthed010203 Date: Sat, 6 Mar 2021 11:11:17 -0500 Subject: [PATCH] Fix indentation (#4877) Indents are 4 spaces not 3 --- core/src/mindustry/input/MobileInput.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/input/MobileInput.java b/core/src/mindustry/input/MobileInput.java index 1624beedef..6958e3fa0b 100644 --- a/core/src/mindustry/input/MobileInput.java +++ b/core/src/mindustry/input/MobileInput.java @@ -722,7 +722,7 @@ public class MobileInput extends InputHandler implements GestureListener{ //When in line mode, pan when near screen edges automatically if(Core.input.isTouched(0)){ - autoPan(); + autoPan(); } int lx = tileX(Core.input.mouseX()), ly = tileY(Core.input.mouseY());