mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 04:37:00 +00:00
[11026] Implement damage reduction part of spell 50720
This commit is contained in:
parent
62da77153d
commit
5099b9133c
4 changed files with 12 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue