From fab26bd1db53e5593056ccccdf4834d1d31acde5 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 22 Feb 2022 14:28:43 -0500 Subject: [PATCH] v1.2.0: fixed some cases of unstable spellbook not updating quickslots --- .../items/artifacts/UnstableSpellbook.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java index f243e5b97..1c1815d38 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java @@ -156,6 +156,7 @@ public class UnstableSpellbook extends Artifact { fScroll.doRead(); Talent.onArtifactUsed(Dungeon.hero); } + updateQuickslot(); } @Override @@ -190,6 +191,7 @@ public class UnstableSpellbook extends Artifact { @Override public void call() { scroll.doRead(); + Item.updateQuickslot(); } }); detach();