mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 07:37:03 +00:00
[11498] Allow stacking some paladin DoTs at target.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
d111d1a4b3
commit
7f957eb88e
2 changed files with 6 additions and 1 deletions
|
|
@ -2250,6 +2250,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
||||||
// Divine Sacrifice and Divine Guardian
|
// Divine Sacrifice and Divine Guardian
|
||||||
if (spellInfo_1->SpellIconID == 3837 && spellInfo_2->SpellIconID == 3837)
|
if (spellInfo_1->SpellIconID == 3837 && spellInfo_2->SpellIconID == 3837)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// Blood Corruption, Holy Vengeance, Righteous Vengeance
|
||||||
|
if ((spellInfo_1->SpellIconID == 2292 && spellInfo_2->SpellIconID == 3025) ||
|
||||||
|
(spellInfo_2->SpellIconID == 2292 && spellInfo_1->SpellIconID == 3025))
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Blessing of Sanctuary (multi-family check, some from 16 spell icon spells)
|
// Blessing of Sanctuary (multi-family check, some from 16 spell icon spells)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "11497"
|
#define REVISION_NR "11498"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue