diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java index 068dcd5f8..c939ef815 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java @@ -69,7 +69,7 @@ public class UnstableSpellbook extends Artifact { ArrayList actions = super.actions( hero ); if (isEquipped( hero ) && charge > 0 && !cursed) actions.add(AC_READ); - if (level < levelCap && !cursed) + if (isEquipped( hero ) && level < levelCap && !cursed) actions.add(AC_ADD); return actions; }