Skip to content

Commit

Permalink
[9665] Add another exception to IsNoStackSpellDueToSpell.
Browse files Browse the repository at this point in the history
Signed-off-by: hunuza <hunuza@gmail.com>
  • Loading branch information
pasdVn authored and hunuza committed Apr 3, 2010
1 parent d329f64 commit 7c8d9f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/game/SpellMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9664"
#define REVISION_NR "9665"
#endif // __REVISION_NR_H__

0 comments on commit 7c8d9f0

Please sign in to comment.