v0.3.0c: fixed dew drops appearing on top of heaps when they shouldn't

This commit is contained in:
Evan Debenham 2015-06-03 11:32:22 -04:00 committed by Evan Debenham
parent 6ec63567a6
commit d7a1c38606

View File

@ -189,7 +189,7 @@ public class Heap implements Bundlable {
if (sprite != null) { if (sprite != null) {
if (type == Type.HEAP || type == Type.FOR_SALE) if (type == Type.HEAP || type == Type.FOR_SALE)
sprite.view( item ); sprite.view( items.peek() );
else else
sprite.view( image(), glowing() ); sprite.view( image(), glowing() );
} }