diff options
author | Jelle Meeus <sogladev@gmail.com> | 2025-08-06 15:01:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-06 19:01:29 -0300 |
commit | bde4e076ed9e1a49dff618d82f912e257065d374 (patch) | |
tree | ef105f87985aa9aee9ff60af081a2e0d1f566063 /src | |
parent | d4511eb78c9ec8ff1ca90b9613ca65271689acca (diff) |
fix(Scripts/Spells): DK Ghoul pet is no longer immune to Horn of Winter and other stat mod auras (#22636)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Spells/spell_generic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_generic.cpp b/src/server/scripts/Spells/spell_generic.cpp index 208b555ff5..5b74ac87da 100644 --- a/src/server/scripts/Spells/spell_generic.cpp +++ b/src/server/scripts/Spells/spell_generic.cpp @@ -5363,7 +5363,7 @@ class spell_pet_intellect_spirit_resilience_scaling : public AuraScript DoEffectCalcAmount += AuraEffectCalcAmountFn(spell_pet_intellect_spirit_resilience_scaling::CalculateSpiritAmount, EFFECT_1,SPELL_AURA_MOD_STAT); // The resilience scaling is not used. The owner's resilience is used directly // DoEffectCalcAmount += AuraEffectCalcAmountFn(spell_pet_intellect_spirit_resilience_scaling::CalculateResilienceAmount, EFFECT_2, SPELL_AURA_MOD_RATING); - OnEffectApply += AuraEffectApplyFn(spell_pet_intellect_spirit_resilience_scaling::HandleEffectApply, EFFECT_ALL, SPELL_AURA_ANY, AURA_EFFECT_HANDLE_REAL); + OnEffectApply += AuraEffectApplyFn(spell_pet_intellect_spirit_resilience_scaling::HandleEffectApply, EFFECT_2, SPELL_AURA_ANY, AURA_EFFECT_HANDLE_REAL); DoEffectCalcPeriodic += AuraEffectCalcPeriodicFn(spell_pet_intellect_spirit_resilience_scaling::CalcPeriodic, EFFECT_ALL, SPELL_AURA_ANY); OnEffectPeriodic += AuraEffectPeriodicFn(spell_pet_intellect_spirit_resilience_scaling::HandlePeriodic, EFFECT_ALL, SPELL_AURA_ANY); } |