v0.2.3f: corrected errors added in previous commit

This commit is contained in:
Evan Debenham 2015-01-26 01:29:43 -05:00
parent 9d90a24a95
commit 93b066dfb2

View File

@ -265,6 +265,8 @@ public class Item implements Bundlable {
cursedKnown = true; cursedKnown = true;
this.level++; this.level++;
updateQuickslot();
return this; return this;
} }
@ -399,7 +401,7 @@ public class Item implements Bundlable {
public void updateQuickslot() { public void updateQuickslot() {
if (Dungeon.quickslot.contains( this )) { if (Dungeon.quickslot.contains( this )) {
updateQuickslot(); QuickSlotButton.refresh();
} }
} }