v0.9.0: fixed upgraded items in heaps not being highlighted

This commit is contained in:
Evan Debenham 2020-09-05 13:43:58 -04:00
parent b7b8c22afa
commit fbf04c3c2e

View File

@ -39,7 +39,13 @@ public class WndInfoItem extends Window {
super();
fillFields( heap );
if (heap.type == Heap.Type.HEAP) {
fillFields( heap.peek() );
} else {
fillFields( heap );
}
}
public WndInfoItem( Item item ) {