From 469be111cd255cc65377c0de7d4d82a1f5fbd918 Mon Sep 17 00:00:00 2001 From: ariel- Date: Sat, 22 Apr 2017 06:45:03 -0300 Subject: [PATCH] Core/Spell: implement pvp trinket immunity against Judgement of Justice By Riztazz, closes #19484 --- src/server/game/Spells/SpellInfo.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp index 4cb2524c95b..8c3d82446fc 100644 --- a/src/server/game/Spells/SpellInfo.cpp +++ b/src/server/game/Spells/SpellInfo.cpp @@ -2490,10 +2490,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;