From 2fe0b7cc7aad12acee2ebe4cb3a01065f1aebd1a Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 21 Jul 2017 01:19:58 -0400 Subject: [PATCH] v0.6.1: fixed guidebook pages showing up in remains --- .../shatteredpixeldungeon/levels/RegularLevel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java index 7f58f8c11..6640bef72 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java @@ -379,7 +379,7 @@ public abstract class RegularLevel extends Level { map[cell] = Terrain.GRASS; losBlocking[cell] = false; } - drop( p, cell ).type = Heap.Type.REMAINS; + drop( p, cell ); } }