mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 10:37:03 +00:00
[c12621] Add stacking exception for spells 57494 and 57492
This commit is contained in:
parent
af4cf28fa2
commit
da15d50aa2
2 changed files with 6 additions and 1 deletions
|
|
@ -2165,6 +2165,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
(spellInfo_2->Id == 45665 && spellInfo_1->Id == 45661))
|
||||
return false;
|
||||
|
||||
// Flame Tsunami Visual and Flame Tsunami Damage Aura
|
||||
if ((spellInfo_1->Id == 57494 && spellInfo_2->Id == 57492) ||
|
||||
(spellInfo_2->Id == 57494 && spellInfo_1->Id == 57492))
|
||||
return false;
|
||||
|
||||
break;
|
||||
}
|
||||
case SPELLFAMILY_MAGE:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "12620"
|
||||
#define REVISION_NR "12621"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue