This commit is contained in:
Anuken
2020-01-09 14:56:21 -05:00
parent 65ee2d2b9e
commit 6050274c0f
3 changed files with 48 additions and 7 deletions
+1 -1
View File
@@ -118,7 +118,7 @@ public enum EditorTool{
if(editor.drawBlock.isOverlay()){
Block dest = tile.overlay();
if(dest == editor.drawBlock) return;
tester = t -> t.overlay() == dest;
tester = t -> t.overlay() == dest && !t.floor().isLiquid;
setter = t -> t.setOverlay(editor.drawBlock);
}else if(editor.drawBlock.isFloor()){
Block dest = tile.floor();