[10219] Fix spell 36032 stacking and procs

This commit is contained in:
Laise 2010-07-18 20:01:40 +03:00
parent c384650af8
commit 5a1a40719c
6 changed files with 15 additions and 3 deletions

View file

@ -3651,5 +3651,10 @@ SpellAuraProcResult Unit::HandleModDamagePercentDoneAuraProc(Unit* /*pVictim*/,
CastCustomSpell(this, 34075, &bp, NULL, NULL, true, castItem, triggeredByAura);
}
// Arcane Blast
else if (spellInfo->Id == 36032 && procSpell->SpellFamilyName == SPELLFAMILY_MAGE && procSpell->SpellIconID == 2294)
// prevent proc from self(spell that triggered this aura)
return SPELL_AURA_PROC_FAILED;
return SPELL_AURA_PROC_OK;
}