diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java index 1002d6df5..eebd9c8b7 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/Level.java @@ -971,7 +971,7 @@ public abstract class Level implements Bundlable { } for (Heap heap : heaps.values()) - if (!heap.seen && fieldOfView[heap.pos]) + if (!heap.seen && fieldOfView[heap.pos] && c == Dungeon.hero) heap.seen = true; return fieldOfView;