diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-04-22 06:45:03 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2017-04-22 06:45:03 -0300 |
commit | 25a449a90e01d7100d482c156fffa3ac2e7730d2 (patch) | |
tree | c80d9ab15c973fefff8a9af35599d1f55f4ffc83 | |
parent | 7ffe0563664c2ed5ba90832dcc42bc15acc177c3 (diff) |
Core/Spell: implement pvp trinket immunity against Judgement of Justice
By Riztazz, closes #19484
-rw-r--r-- | src/server/game/Spells/SpellInfo.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp index 03951f1c5bc..1ab52618054 100644 --- a/src/server/game/Spells/SpellInfo.cpp +++ b/src/server/game/Spells/SpellInfo.cpp @@ -2752,10 +2752,13 @@ void SpellInfo::_LoadImmunityInfo() { switch (Id) { - case 34471: // The Beast Within - case 19574: // Bestial Wrath case 42292: // PvP trinket case 59752: // Every Man for Himself + mechanicImmunityMask |= IMMUNE_TO_MOVEMENT_IMPAIRMENT_AND_LOSS_CONTROL_MASK; + immuneInfo.AuraTypeImmune.insert(SPELL_AURA_USE_NORMAL_MOVEMENT_SPEED); + break; + case 34471: // The Beast Within + case 19574: // Bestial Wrath case 53490: // Bullheaded mechanicImmunityMask |= IMMUNE_TO_MOVEMENT_IMPAIRMENT_AND_LOSS_CONTROL_MASK; break; |