From 98714fa3221f1efb769d416ffa2b5fd685611051 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 31 Dec 2024 12:41:46 -0500 Subject: [PATCH] v3.0.0: fixed holy tome not triggering the enhanced rings talent --- .../shatteredpixeldungeon/actors/hero/spells/ClericSpell.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/ClericSpell.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/ClericSpell.java index b9e578754..ad6c6098f 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/ClericSpell.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/ClericSpell.java @@ -70,6 +70,7 @@ public abstract class ClericSpell { hero.buff(Talent.SatiatedSpellsTracker.class).detach(); } tome.spendCharge(chargeUse(hero)); + Talent.onArtifactUsed(hero); if (hero.buff(AscendedForm.AscendBuff.class) != null){ hero.buff(AscendedForm.AscendBuff.class).spellCasts++; hero.buff(AscendedForm.AscendBuff.class).incShield((int)(10*chargeUse(hero)));