From 2432c351d237a90967a4f0cad87e817102b79fcd Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 9 Aug 2015 05:51:16 -0400 Subject: [PATCH] v0.3.1: fixed a bug with changes to heap visibility --- src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java index e0b4223f6..f54d9942d 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java @@ -688,6 +688,7 @@ public abstract class Level implements Bundlable { if (heap == null) { heap = new Heap(); + heap.seen = fieldOfView[cell]; heap.pos = cell; if (map[cell] == Terrain.CHASM || (Dungeon.level != null && pit[cell])) { Dungeon.dropToChasm( item );