mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 04:37:00 +00:00
[10130] Proper stacking 30108/348 anr ranks from 3.2.x
(based on zergtmn's repo commit 7588ca9) Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
3215c80cce
commit
3dbb8385b5
3 changed files with 6 additions and 1 deletions
|
|
@ -398,6 +398,9 @@ SpellSpecific GetSpellSpecific(uint32 spellId)
|
|||
if (spellInfo->SpellFamilyFlags & UI64LIT(0x2000002000000000) || spellInfo->SpellFamilyFlags2 & 0x00000010)
|
||||
return SPELL_WARLOCK_ARMOR;
|
||||
|
||||
// Unstable Affliction | Immolate
|
||||
if (spellInfo->SpellFamilyFlags & UI64LIT(0x10000000004))
|
||||
return SPELL_UA_IMMOLATE;
|
||||
break;
|
||||
}
|
||||
case SPELLFAMILY_PRIEST:
|
||||
|
|
@ -484,6 +487,7 @@ bool IsSingleFromSpellSpecificPerTargetPerCaster(SpellSpecific spellSpec1,SpellS
|
|||
case SPELL_POSITIVE_SHOUT:
|
||||
case SPELL_JUDGEMENT:
|
||||
case SPELL_HAND:
|
||||
case SPELL_UA_IMMOLATE:
|
||||
return spellSpec1==spellSpec2;
|
||||
default:
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue