v3.0.0: properly fixed guiding light cooldown

This commit is contained in:
Evan Debenham
2024-12-02 12:56:51 -05:00
parent d34934cfca
commit db0194b44e

View File

@@ -86,7 +86,7 @@ public class GuidingLight extends TargetedClericSpell {
hero.next();
onSpellCast(tome, hero);
if (hero.subClass == HeroSubClass.PRIEST) {
if (hero.subClass == HeroSubClass.PRIEST && hero.buff(GuidingLightPriestCooldown.class) == null) {
Buff.prolong(hero, GuidingLightPriestCooldown.class, 100f);
}