Skip to content

Commit

Permalink
[12410] Add stacking exception for spells 53456 and 53421
Browse files Browse the repository at this point in the history
  • Loading branch information
xfurry committed Mar 12, 2013
1 parent fc443ca commit ea6da6b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/game/SpellMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2000,6 +2000,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
(spellInfo_2->Id == 50442 && spellInfo_1->Id == 47941))
return false;

// Impale aura and Submerge
if ((spellInfo_1->Id == 53456 && spellInfo_2->Id == 53421) ||
(spellInfo_2->Id == 53456 && spellInfo_1->Id == 53421))
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 "12409"
#define REVISION_NR "12410"
#endif // __REVISION_NR_H__

0 comments on commit ea6da6b

Please sign in to comment.