v0.5.0: fixed logic for checking if a tile is part of the floor

This commit is contained in:
Evan Debenham 2017-01-03 20:41:17 -05:00
parent 283e289ca3
commit cc2b0a0cb8

View File

@ -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;
} }