mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 19:37:02 +00:00
[11450] Aloow stacking some warlock DoTs
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
fac122184f
commit
ad4c234e04
2 changed files with 11 additions and 1 deletions
|
|
@ -2045,6 +2045,16 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
((spellInfo_2->SpellIconID == 313 || spellInfo_2->SpellIconID == 2039) && (spellInfo_1->SpellIconID == 544 || spellInfo_1->SpellIconID == 91)))
|
||||
return false;
|
||||
|
||||
// Shadowflame and Curse of Agony
|
||||
if( spellInfo_1->SpellIconID == 544 && spellInfo_2->SpellIconID == 3317 ||
|
||||
spellInfo_2->SpellIconID == 544 && spellInfo_1->SpellIconID == 3317 )
|
||||
return false;
|
||||
|
||||
// Shadowflame and Curse of Doom
|
||||
if( spellInfo_1->SpellIconID == 91 && spellInfo_2->SpellIconID == 3317 ||
|
||||
spellInfo_2->SpellIconID == 91 && spellInfo_1->SpellIconID == 3317 )
|
||||
return false;
|
||||
|
||||
// Metamorphosis, diff effects
|
||||
if (spellInfo_1->SpellIconID == 3314 && spellInfo_2->SpellIconID == 3314)
|
||||
return false;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "11449"
|
||||
#define REVISION_NR "11450"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue