[11026] Implement damage reduction part of spell 50720

This commit is contained in:
VladimirMangos 2011-01-17 18:04:26 +03:00
parent 62da77153d
commit 5099b9133c
4 changed files with 12 additions and 1 deletions

View file

@ -1865,6 +1865,10 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
if (spellInfo_1->SpellIconID == 3559 && spellInfo_2->SpellIconID == 3559)
return false;
// Vigilance and Damage Reduction (Vigilance triggered spell)
if (spellInfo_1->SpellIconID == 2834 && spellInfo_2->SpellIconID == 2834)
return false;
break;
}
case SPELLFAMILY_MAGE: