mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
[7476] Implement druid's talent 61336.
Signed-off-by: VladimirMangos <vladimir@getmangos.com> Some improvements added to patch. Related cleanups.
This commit is contained in:
parent
c99a849eb9
commit
bde638ace7
4 changed files with 59 additions and 20 deletions
|
|
@ -1336,6 +1336,10 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
// Cat Energy (Feral T4 (2)) and Omen of Clarity
|
||||
if( spellInfo_1->Id == 16864 && spellInfo_2->Id == 37311 || spellInfo_2->Id == 16864 && spellInfo_1->Id == 37311 )
|
||||
return false;
|
||||
|
||||
// Survival Instincts and Survival Instincts
|
||||
if( spellInfo_1->Id == 61336 && spellInfo_2->Id == 50322 || spellInfo_2->Id == 61336 && spellInfo_1->Id == 50322 )
|
||||
return false;
|
||||
}
|
||||
|
||||
// Leader of the Pack and Scroll of Stamina (multi-family check)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue