mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
[11552] Implement aura SPELL_AURA_STOP_NATURAL_MANA_REGEN (294)
Also partly implement using it spell 62692.
FIXME: Some spells expected to be working for target under spell 62692 effect
not working. This need additional research and fixes.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
e204c246f4
commit
ce14b28ba4
6 changed files with 25 additions and 4 deletions
|
|
@ -1898,6 +1898,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
(spellInfo_2->Id == 8326 && spellInfo_1->Id == 20584))
|
||||
return false;
|
||||
|
||||
// Aura of Despair auras
|
||||
if ((spellInfo_1->Id == 64848 && spellInfo_2->Id == 62692) ||
|
||||
(spellInfo_2->Id == 64848 && spellInfo_1->Id == 62692))
|
||||
return false;
|
||||
|
||||
// Blood Fury and Rage of the Unraveller
|
||||
if (spellInfo_1->SpellIconID == 1662 && spellInfo_2->SpellIconID == 1662)
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue