v1.2.0: fixed some cases of unstable spellbook not updating quickslots

This commit is contained in:
Evan Debenham 2022-02-22 14:28:43 -05:00
parent 6b52643082
commit fab26bd1db

View File

@ -156,6 +156,7 @@ public class UnstableSpellbook extends Artifact {
fScroll.doRead(); fScroll.doRead();
Talent.onArtifactUsed(Dungeon.hero); Talent.onArtifactUsed(Dungeon.hero);
} }
updateQuickslot();
} }
@Override @Override
@ -190,6 +191,7 @@ public class UnstableSpellbook extends Artifact {
@Override @Override
public void call() { public void call() {
scroll.doRead(); scroll.doRead();
Item.updateQuickslot();
} }
}); });
detach(); detach();