v0.5.0: fixed logic for checking if a tile is part of the floor
This commit is contained in:
parent
283e289ca3
commit
cc2b0a0cb8
|
@ -104,7 +104,7 @@ public class DungeonTileSheet {
|
||||||
|
|
||||||
|
|
||||||
public static boolean floorTile(int tile){
|
public static boolean floorTile(int tile){
|
||||||
return tile < CHASM;
|
return directVisuals.get(tile, CHASM) < CHASM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user