diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-04-22 06:45:03 -0300 |
---|---|---|
committer | funjoker <funjoker109@gmail.com> | 2020-04-29 22:23:11 +0200 |
commit | 05ba662d5daaa3428cc01cdaa3794bf5a073ef17 (patch) | |
tree | 32f2397844599006f8384f37c0c63aa047ae49c7 /src | |
parent | 230adbfc0e4edefc45c9b0368db19d33849123eb (diff) |
Core/Spell: implement pvp trinket immunity against Judgement of Justice
By Riztazz, closes #19484
(cherry picked from commit 25a449a90e01d7100d482c156fffa3ac2e7730d2)
Diffstat (limited to 'src')
-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 bec8a653fee..b9f26ed4e08 100644 --- a/src/server/game/Spells/SpellInfo.cpp +++ b/src/server/game/Spells/SpellInfo.cpp @@ -3384,11 +3384,14 @@ void SpellInfo::_LoadImmunityInfo() { switch (Id) { + 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 42292: // PvP trinket case 46227: // Medallion of Immunity - case 59752: // Every Man for Himself case 53490: // Bullheaded case 65547: // PvP Trinket case 134946: // Supremacy of the Alliance |