v0.5.0: fixed dungeon tile sheet not identifying water tiles as floor
This commit is contained in:
parent
e808b3e2ae
commit
07819073fc
|
@ -104,7 +104,7 @@ public class DungeonTileSheet {
|
||||||
|
|
||||||
|
|
||||||
public static boolean floorTile(int tile){
|
public static boolean floorTile(int tile){
|
||||||
return directVisuals.get(tile, CHASM) < CHASM;
|
return tile == Terrain.WATER || directVisuals.get(tile, CHASM) < CHASM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user