mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-30 21:57:01 +01:00
* Remove typeid check and fix cast target for Improved Fear. Patch by jesper.vortex.
* Closes #946. --HG-- branch : trunk
This commit is contained in:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user