From 5591ab1ddbdd71923aa1dc7f253e1b1aba8312bf Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 27 Nov 2025 12:44:51 -0500 Subject: [PATCH] v3.3.0: fixed recall inscription triggering on-scroll fx (inc. itself!) --- .../actors/hero/spells/RecallInscription.java | 1 + 1 file changed, 1 insertion(+) 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 2a3ab966a..5fe947307 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 @@ -75,6 +75,7 @@ public class RecallInscription extends ClericSpell { if (item instanceof Scroll){ ((Scroll) item).anonymize(); + ((Scroll) item).talentChance = 0; //does not trigger on-scroll effects ((Scroll) item).doRead(); } else if (item instanceof Runestone){ ((Runestone) item).anonymize();