diff options
author | ariel- <ariel-@users.noreply.github.com> | 2018-03-10 03:55:35 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2018-03-10 03:55:35 -0300 |
commit | 1a2c6f65457ef2bcb2e1969432bc6d2eebc63302 (patch) | |
tree | 52f2213094640be63dab5b46e365c26a6b1263d1 /src | |
parent | 0c2a6dee0781be56bdee81e4d155431d7e7634f1 (diff) |
Scripts/Spells: fix Hypothermia
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Spells/spell_mage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Spells/spell_mage.cpp b/src/server/scripts/Spells/spell_mage.cpp index 9e9074f1fea..448e6e7ba10 100644 --- a/src/server/scripts/Spells/spell_mage.cpp +++ b/src/server/scripts/Spells/spell_mage.cpp @@ -1002,12 +1002,12 @@ class spell_mage_ice_block : public SpellScript bool Validate(SpellInfo const* spellInfo) override { - return ValidateSpellInfo({ spellInfo->ExcludeTargetAuraSpell }); + return ValidateSpellInfo({ spellInfo->ExcludeCasterAuraSpell }); } void TriggerHypothermia() { - GetCaster()->CastSpell(nullptr, GetSpellInfo()->ExcludeTargetAuraSpell, true); + GetCaster()->CastSpell(nullptr, GetSpellInfo()->ExcludeCasterAuraSpell, true); } void Register() override |