From 793a22669273eceffef2c39b17623f8254588b48 Mon Sep 17 00:00:00 2001 From: XTZGZoReX Date: Thu, 18 Mar 2010 14:57:39 +0100 Subject: [PATCH] * Remove typeid check and fix cast target for Improved Fear. Patch by jesper.vortex. * Closes #946. --HG-- branch : trunk --- src/game/SpellAuras.cpp | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index d4b84e9191f..412ec17d60c 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -1100,21 +1100,18 @@ void Aura::HandleAuraSpecificMods(AuraApplication const * aurApp, Unit * caster, // Improved Fear else if (GetSpellProto()->SpellFamilyFlags[1] & 0x00000400) { - if (caster->GetTypeId() == TYPEID_UNIT) + if (AuraEffect* aurEff = caster->GetAuraEffect(SPELL_AURA_DUMMY, SPELLFAMILY_WARLOCK, 98, 0)) { - if (AuraEffect* aurEff = caster->GetAuraEffect(SPELL_AURA_DUMMY, SPELLFAMILY_WARLOCK, 98, 0)) + uint32 spellId = 0; + switch (aurEff->GetId()) { - uint32 spellId = 0; - switch (aurEff->GetId()) - { - case 53759: spellId = 60947; break; - case 53754: spellId = 60946; break; - default: - sLog.outError("Aura::HandleAuraSpecificMods: Unknown rank of Improved Fear (%d) found", aurEff->GetId()); - } - if (spellId) - caster->CastSpell(caster, spellId, true); + case 53759: spellId = 60947; break; + case 53754: spellId = 60946; break; + default: + sLog.outError("Aura::HandleAuraSpecificMods: Unknown rank of Improved Fear (%d) found", aurEff->GetId()); } + if (spellId) + caster->CastSpell(target, spellId, true); } } switch(GetId())