mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
[9665] Add another exception to IsNoStackSpellDueToSpell.
Signed-off-by: hunuza <hunuza@gmail.com>
This commit is contained in:
parent
8bd8986d5d
commit
3d7313a229
2 changed files with 5 additions and 1 deletions
|
|
@ -1399,6 +1399,10 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
||||||
(spellInfo_2->Id == 8326 && spellInfo_1->Id == 20584) )
|
(spellInfo_2->Id == 8326 && spellInfo_1->Id == 20584) )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// Kindred Spirits
|
||||||
|
if( spellInfo_1->SpellIconID == 3559 && spellInfo_2->SpellIconID == 3559 )
|
||||||
|
return false;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case SPELLFAMILY_MAGE:
|
case SPELLFAMILY_MAGE:
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "9664"
|
#define REVISION_NR "9665"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue