diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java index eebd9c8b7..95477a226 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java @@ -700,7 +700,7 @@ public abstract class Level implements Bundlable { if (heap == null) { heap = new Heap(); - heap.seen = fieldOfView[cell]; + heap.seen = Dungeon.visible[cell]; heap.pos = cell; if (map[cell] == Terrain.CHASM || (Dungeon.level != null && pit[cell])) { Dungeon.dropToChasm( item );