diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/DungeonTileSheet.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/DungeonTileSheet.java index dfa5bbb31..af1508248 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/DungeonTileSheet.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/DungeonTileSheet.java @@ -104,7 +104,7 @@ public class DungeonTileSheet { public static boolean floorTile(int tile){ - return directVisuals.get(tile, CHASM) < CHASM; + return tile == Terrain.WATER || directVisuals.get(tile, CHASM) < CHASM; }