Various bugfixes

This commit is contained in:
Anuken
2018-08-08 12:22:47 -04:00
parent 4e3204bc6d
commit 91552a3a2b
10 changed files with 16 additions and 10 deletions

View File

@@ -144,7 +144,7 @@ public class MinimapRenderer implements Disposable{
private int colorFor(Tile tile){
tile = tile.target();
return ColorMapper.colorFor(tile.floor(), tile.block(), tile.getTeam(), tile.getElevation());
return ColorMapper.colorFor(tile.floor(), tile.block(), tile.getTeam(), tile.getElevation(), tile.getCliffs());
}
@Override