mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 04:37:00 +00:00
[8892] Implement spell 29166 and glyph 40908.
Original patch provided by bobaz. Signed-off-by: VladimirMangos <vladimir@getmangos.com> Also add protection from wrong periodic heal at relogin.
This commit is contained in:
parent
8465ae23f9
commit
d542e25302
3 changed files with 29 additions and 4 deletions
|
|
@ -1537,6 +1537,10 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
(spellId_2 == 33891 && spellId_1 == 34123))
|
||||
return false;
|
||||
|
||||
// Innervate and Glyph of Innervate and some other spells
|
||||
if (spellInfo_1->SpellIconID == 62 && spellInfo_2->SpellIconID == 62)
|
||||
return false;
|
||||
|
||||
// Wrath of Elune and Nature's Grace
|
||||
if( spellInfo_1->Id == 16886 && spellInfo_2->Id == 46833 || spellInfo_2->Id == 16886 && spellInfo_1->Id == 46833 )
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue