mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 19:37:02 +00:00
[7322] Allow stacking for spell 52950 and 52707
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
ab7b358d44
commit
e133c9f0d7
2 changed files with 6 additions and 1 deletions
|
|
@ -1153,6 +1153,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
||||||
(spellInfo_2->Id == 23170 && spellInfo_1->Id == 23171) )
|
(spellInfo_2->Id == 23170 && spellInfo_1->Id == 23171) )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// See Chapel Invisibility and See Noth Invisibility
|
||||||
|
if( (spellInfo_1->Id == 52950 && spellInfo_2->Id == 52707) ||
|
||||||
|
(spellInfo_2->Id == 52950 && spellInfo_1->Id == 52707) )
|
||||||
|
return false;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case SPELLFAMILY_WARRIOR:
|
case SPELLFAMILY_WARRIOR:
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "7321"
|
#define REVISION_NR "7322"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue