diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/Item.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/Item.java index b2a8030e3..e987f58a6 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/Item.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/Item.java @@ -264,6 +264,8 @@ public class Item implements Bundlable { cursed = false; cursedKnown = true; this.level++; + + updateQuickslot(); return this; } @@ -399,7 +401,7 @@ public class Item implements Bundlable { public void updateQuickslot() { if (Dungeon.quickslot.contains( this )) { - updateQuickslot(); + QuickSlotButton.refresh(); } }