mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 04:37:00 +00:00
[11510] Implement SPELL_AURA_MOD_PARRY_FROM_BEHIND_PERCENT (288) and related spell 19263.
Original patchs provided by KAPATEJIb and Roshnak.
This commit is contained in:
parent
b7cc436571
commit
0564b622c2
6 changed files with 48 additions and 22 deletions
|
|
@ -2210,6 +2210,10 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
((spellInfo_2->SpellFamilyFlags & UI64LIT(0x4)) && (spellInfo_1->SpellFamilyFlags & UI64LIT(0x00000004000))))
|
||||
return false;
|
||||
|
||||
// Deterrence
|
||||
if (spellInfo_1->SpellIconID == 83 && spellInfo_2->SpellIconID == 83)
|
||||
return false;
|
||||
|
||||
// Bestial Wrath
|
||||
if (spellInfo_1->SpellIconID == 1680 && spellInfo_2->SpellIconID == 1680)
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue