mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[9482] Implement 48266, and 50365, 50384, 50391 and ranks.
Original patch provided by laise. Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
ae7f6de936
commit
4dc85260c7
8 changed files with 172 additions and 28 deletions
|
|
@ -1743,15 +1743,19 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
if (spellInfo_2->SpellFamilyName == SPELLFAMILY_DEATHKNIGHT)
|
||||
{
|
||||
// Lichborne and Lichborne (triggered)
|
||||
if( spellInfo_1->SpellIconID == 61 && spellInfo_2->SpellIconID == 61 )
|
||||
if (spellInfo_1->SpellIconID == 61 && spellInfo_2->SpellIconID == 61)
|
||||
return false;
|
||||
|
||||
// Frost Presence and Frost Presence (triggered)
|
||||
if( spellInfo_1->SpellIconID == 2632 && spellInfo_2->SpellIconID == 2632 )
|
||||
if (spellInfo_1->SpellIconID == 2632 && spellInfo_2->SpellIconID == 2632)
|
||||
return false;
|
||||
|
||||
// Unholy Presence and Unholy Presence (triggered)
|
||||
if( spellInfo_1->SpellIconID == 2633 && spellInfo_2->SpellIconID == 2633 )
|
||||
if (spellInfo_1->SpellIconID == 2633 && spellInfo_2->SpellIconID == 2633)
|
||||
return false;
|
||||
|
||||
// Unholy Presence and Unholy Presence (triggered)
|
||||
if (spellInfo_1->SpellIconID == 2636 && spellInfo_2->SpellIconID == 2636)
|
||||
return false;
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue