diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/ui/Toolbar.java b/src/com/shatteredpixel/shatteredpixeldungeon/ui/Toolbar.java index 6fe02c269..f8b4b98ca 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/ui/Toolbar.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/ui/Toolbar.java @@ -280,7 +280,7 @@ public class Toolbar extends Component { } Heap heap = Dungeon.level.heaps.get(cell); - if (heap != null) { + if (heap != null && heap.seen) { if (heap.type == Heap.Type.FOR_SALE && heap.size() == 1 && heap.peek().price() > 0) { GameScene.show(new WndTradeItem(heap, false)); } else {