diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/RecallInscription.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/RecallInscription.java index 6b0242d33..8115e210f 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/RecallInscription.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/RecallInscription.java @@ -65,6 +65,7 @@ public class RecallInscription extends ClericSpell { } Item item = Reflection.newInstance(hero.buff(UsedItemTracker.class).item); + hero.buff(UsedItemTracker.class).detach(); item.setCurrent(hero); @@ -84,7 +85,6 @@ public class RecallInscription extends ClericSpell { } onSpellCast(tome, hero); - hero.buff(UsedItemTracker.class).detach(); }