mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[9474] Implement negative totem effect apply for 30706 and ranks.
This commit is contained in:
parent
eacf2218be
commit
7e2d7d8324
4 changed files with 9 additions and 2 deletions
|
|
@ -1730,6 +1730,10 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
// Ghost Wolf
|
||||
if (spellInfo_1->SpellIconID == 67 && spellInfo_2->SpellIconID == 67)
|
||||
return false;
|
||||
|
||||
// Totem of Wrath (positive/negative), ranks checked early
|
||||
if (spellInfo_1->SpellIconID == 2019 && spellInfo_2->SpellIconID == 2019)
|
||||
return false;
|
||||
}
|
||||
// Bloodlust and Bloodthirst (multi-family check)
|
||||
if( spellInfo_1->Id == 2825 && spellInfo_2->SpellIconID == 38 && spellInfo_2->SpellVisual[0] == 0 )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue