From 6fc1118b73262719ca9011d4e51059d7d210c470 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 1 May 2017 16:22:50 -0400 Subject: [PATCH] v0.6.0: fixed chasm blending with bookcases and barricades --- .../shatteredpixeldungeon/tiles/DungeonTileSheet.java | 2 ++ 1 file changed, 2 insertions(+) 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 505ba70ed..0a611d1cf 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/DungeonTileSheet.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/DungeonTileSheet.java @@ -129,6 +129,8 @@ public class DungeonTileSheet { chasmStitcheable.put( Terrain.STATUE, CHASM_FLOOR ); chasmStitcheable.put( Terrain.SECRET_TRAP, CHASM_FLOOR ); chasmStitcheable.put( Terrain.TRAP, CHASM_FLOOR ); + chasmStitcheable.put( Terrain.BOOKSHELF, CHASM_FLOOR ); + chasmStitcheable.put( Terrain.BARRICADE, CHASM_FLOOR ); //special floor chasmStitcheable.put( Terrain.EMPTY_SP, CHASM_FLOOR_SP );