v0.3.1: heaps are now always visible after being first seen

This commit is contained in:
Evan Debenham
2015-07-19 02:20:52 -04:00
committed by Evan Debenham
parent a1e9b10358
commit d007988701
2 changed files with 8 additions and 0 deletions
@@ -952,6 +952,10 @@ public abstract class Level implements Bundlable {
}
}
}
for (Heap heap : heaps.values())
if (!heap.seen && fieldOfView[heap.pos])
heap.seen = true;
return fieldOfView;
}