diff --git a/core/assets/bundles/bundle.properties b/core/assets/bundles/bundle.properties index b106eca042..c968d04610 100644 --- a/core/assets/bundles/bundle.properties +++ b/core/assets/bundles/bundle.properties @@ -259,8 +259,8 @@ toolmode.replace = Replace toolmode.replace.description = Draws only on solid blocks. toolmode.replaceall = Replace All toolmode.replaceall.description = Replace all blocks in map. -toolmode.straight = Straight -toolmode.straight.description = Draws only straight lines. +toolmode.orthogonal = Orthogonal +toolmode.orthogonal.description = Draws only orthogonal lines. toolmode.square = Square toolmode.square.description = Square brush. toolmode.eraseores = Erase Ores diff --git a/core/src/io/anuke/mindustry/editor/EditorTool.java b/core/src/io/anuke/mindustry/editor/EditorTool.java index b81661cb3d..02d4f518a0 100644 --- a/core/src/io/anuke/mindustry/editor/EditorTool.java +++ b/core/src/io/anuke/mindustry/editor/EditorTool.java @@ -20,7 +20,7 @@ public enum EditorTool{ editor.drawBlock = tile.block() == Blocks.air ? tile.overlay() == Blocks.air ? tile.floor() : tile.overlay() : tile.block(); } }, - line("replace", "straight"){ + line("replace", "orthogonal"){ @Override public void touchedLine(MapEditor editor, int x1, int y1, int x2, int y2){