v3.0.0: fixed holy tome not triggering the enhanced rings talent

This commit is contained in:
Evan Debenham
2024-12-31 12:41:46 -05:00
parent f2e3706782
commit 98714fa322

View File

@@ -70,6 +70,7 @@ public abstract class ClericSpell {
hero.buff(Talent.SatiatedSpellsTracker.class).detach(); hero.buff(Talent.SatiatedSpellsTracker.class).detach();
} }
tome.spendCharge(chargeUse(hero)); tome.spendCharge(chargeUse(hero));
Talent.onArtifactUsed(hero);
if (hero.buff(AscendedForm.AscendBuff.class) != null){ if (hero.buff(AscendedForm.AscendBuff.class) != null){
hero.buff(AscendedForm.AscendBuff.class).spellCasts++; hero.buff(AscendedForm.AscendBuff.class).spellCasts++;
hero.buff(AscendedForm.AscendBuff.class).incShield((int)(10*chargeUse(hero))); hero.buff(AscendedForm.AscendBuff.class).incShield((int)(10*chargeUse(hero)));