mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 16:37:00 +00:00
[11698] Fixed spells 50756 and 50758 stack check
Original patch provided by Xfurry.
This commit is contained in:
parent
178654bbba
commit
75cfbb41c8
2 changed files with 6 additions and 1 deletions
|
|
@ -1927,6 +1927,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
||||||
if (spellInfo_1->SpellIconID == 2834 && spellInfo_2->SpellIconID == 2834)
|
if (spellInfo_1->SpellIconID == 2834 && spellInfo_2->SpellIconID == 2834)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// Unstable Sphere Timer and Unstable Sphere Passive
|
||||||
|
if ((spellInfo_1->Id == 50758 && spellInfo_2->Id == 50756) ||
|
||||||
|
(spellInfo_2->Id == 50758 && spellInfo_1->Id == 50756))
|
||||||
|
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 "11697"
|
#define REVISION_NR "11698"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue