[8650] Allow stacking some paladin spell auras.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
laise 2009-10-16 06:08:47 +04:00 committed by VladimirMangos
parent a4d61a6988
commit adcfd1e078
2 changed files with 5 additions and 1 deletions

View file

@ -1633,6 +1633,10 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
// Beacon of Light and Light's Beacon
if ((spellInfo_1->SpellIconID == 3032) && (spellInfo_2->SpellIconID == 3032))
return false;
// Concentration Aura and Improved Concentration Aura and Aura Mastery
if ((spellInfo_1->SpellIconID == 1487) && (spellInfo_2->SpellIconID == 1487))
return false;
}
// Combustion and Fire Protection Aura (multi-family check)

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "8649"
#define REVISION_NR "8650"
#endif // __REVISION_NR_H__