Fixed player build indicators, power void

This commit is contained in:
Anuken
2018-10-17 10:31:59 -04:00
parent 8e952a550b
commit 02286b0c4e
3 changed files with 10 additions and 3 deletions

View File

@@ -101,9 +101,9 @@ public class DesktopInput extends InputHandler{
tile = tile.target();
Draw.color(Palette.removeBack);
Lines.square(tile.drawx(), tile.drawy()-1, tile.block().size * tilesize / 2f);
Lines.square(tile.drawx(), tile.drawy()-1, tile.block().size * tilesize / 2f - 1);
Draw.color(Palette.remove);
Lines.square(tile.drawx(), tile.drawy(), tile.block().size * tilesize / 2f);
Lines.square(tile.drawx(), tile.drawy(), tile.block().size * tilesize / 2f - 1);
}
}