mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 16:37:00 +00:00
[8492] Implement talent 53563.
Original patch suggested by Arthorius. Added data in mangos_spell_check to remember requirement update code for 3.2.x support in future.
This commit is contained in:
parent
692f32c82a
commit
610703c14b
5 changed files with 48 additions and 2 deletions
|
|
@ -1571,6 +1571,10 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
if ((spellInfo_1->SpellFamilyFlags2 & 0x00000020) && (spellInfo_2->SpellIconID == 291 || spellInfo_2->SpellIconID == 3028) ||
|
||||
(spellInfo_2->SpellFamilyFlags2 & 0x00000020) && (spellInfo_1->SpellIconID == 291 || spellInfo_1->SpellIconID == 3028))
|
||||
return false;
|
||||
|
||||
// Beacon of Light and Light's Beacon
|
||||
if ((spellInfo_1->SpellIconID == 3032) && (spellInfo_2->SpellIconID == 3032))
|
||||
return false;
|
||||
}
|
||||
|
||||
// Combustion and Fire Protection Aura (multi-family check)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue