diff options
| author | Ovahlord <dreadkiller@gmx.de> | 2024-05-30 14:55:34 +0200 |
|---|---|---|
| committer | Ovahlord <dreadkiller@gmx.de> | 2024-05-30 14:55:34 +0200 |
| commit | 8d851e857664fb63c6784cb66ef102e96df80796 (patch) | |
| tree | 9e718deb5b363ec4a0bb5bdfe124865e57b9b754 /src/server/scripts | |
| parent | 8dc00345bd7bcdee4d39a8f2be697468684638ec (diff) | |
Core/Spells: removed no longer used parameters from SpellEffectInfo::CalcValue and SpellEffectInfo::CalcBaseValue
Diffstat (limited to 'src/server/scripts')
| -rw-r--r-- | src/server/scripts/Spells/spell_mage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_mage.cpp b/src/server/scripts/Spells/spell_mage.cpp index 2db4a8676f3..e28d8b88a88 100644 --- a/src/server/scripts/Spells/spell_mage.cpp +++ b/src/server/scripts/Spells/spell_mage.cpp @@ -638,7 +638,7 @@ class spell_mage_ethereal_blink_triggered : public SpellScript if (AuraEffect const* effectivenessEffect = GetCaster()->GetAuraEffect(SPELL_MAGE_ETHEREAL_BLINK, EFFECT_1)) effectivenessPct = effectivenessEffect->GetAmount(); - int32 slowPct = sSpellMgr->AssertSpellInfo(SPELL_MAGE_SLOW, DIFFICULTY_NONE)->GetEffect(EFFECT_0).CalcBaseValue(GetCaster(), GetHitUnit(), 0, -1); + int32 slowPct = sSpellMgr->AssertSpellInfo(SPELL_MAGE_SLOW, DIFFICULTY_NONE)->GetEffect(EFFECT_0).CalcBaseValue(GetCaster(), GetHitUnit()); ApplyPct(slowPct, effectivenessPct); GetCaster()->CastSpell(GetHitUnit(), SPELL_MAGE_SLOW, CastSpellExtraArgs(GetSpell()) |
