[9665] Add another exception to IsNoStackSpellDueToSpell.

Signed-off-by: hunuza <hunuza@gmail.com>
This commit is contained in:
pasdVn 2010-04-03 10:46:39 +02:00 committed by hunuza
parent 8bd8986d5d
commit 3d7313a229
2 changed files with 5 additions and 1 deletions

View file

@ -1399,6 +1399,10 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
(spellInfo_2->Id == 8326 && spellInfo_1->Id == 20584) )
return false;
// Kindred Spirits
if( spellInfo_1->SpellIconID == 3559 && spellInfo_2->SpellIconID == 3559 )
return false;
break;
}
case SPELLFAMILY_MAGE:

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9664"
#define REVISION_NR "9665"
#endif // __REVISION_NR_H__