Fixed terminology

This commit is contained in:
Anuken 2019-06-11 23:39:01 -04:00
parent df78412896
commit 9363946874
2 changed files with 3 additions and 3 deletions

View File

@ -259,8 +259,8 @@ toolmode.replace = Replace
toolmode.replace.description = Draws only on solid blocks. toolmode.replace.description = Draws only on solid blocks.
toolmode.replaceall = Replace All toolmode.replaceall = Replace All
toolmode.replaceall.description = Replace all blocks in map. toolmode.replaceall.description = Replace all blocks in map.
toolmode.straight = Straight toolmode.orthogonal = Orthogonal
toolmode.straight.description = Draws only straight lines. toolmode.orthogonal.description = Draws only orthogonal lines.
toolmode.square = Square toolmode.square = Square
toolmode.square.description = Square brush. toolmode.square.description = Square brush.
toolmode.eraseores = Erase Ores toolmode.eraseores = Erase Ores

View File

@ -20,7 +20,7 @@ public enum EditorTool{
editor.drawBlock = tile.block() == Blocks.air ? tile.overlay() == Blocks.air ? tile.floor() : tile.overlay() : tile.block(); editor.drawBlock = tile.block() == Blocks.air ? tile.overlay() == Blocks.air ? tile.floor() : tile.overlay() : tile.block();
} }
}, },
line("replace", "straight"){ line("replace", "orthogonal"){
@Override @Override
public void touchedLine(MapEditor editor, int x1, int y1, int x2, int y2){ public void touchedLine(MapEditor editor, int x1, int y1, int x2, int y2){