diff --git a/Source/Game/Spells/SpellInfo.cs b/Source/Game/Spells/SpellInfo.cs index 6050cdcfe..1a4dd4804 100644 --- a/Source/Game/Spells/SpellInfo.cs +++ b/Source/Game/Spells/SpellInfo.cs @@ -1585,6 +1585,7 @@ namespace Game.Spells case 183435: // Retribution Aura case 317920: // Concentration Aura _spellSpecific = SpellSpecificType.Aura; + break; default: break; } diff --git a/Source/Scripts/Spells/Priest.cs b/Source/Scripts/Spells/Priest.cs index 0787ca2b1..9a0beedea 100644 --- a/Source/Scripts/Spells/Priest.cs +++ b/Source/Scripts/Spells/Priest.cs @@ -394,15 +394,6 @@ namespace Scripts.Spells.Priest if (!caster.IsInFront(target)) return SpellCastResult.NotInfront; } - else - { - //Support for modifications of this spell in Legion with The Penitent talent (7.1.5) - if (!caster.HasAura(SpellIds.ThePenitentAura)) - return SpellCastResult.BadTargets; - - if (!caster.IsInFront(target)) - return SpellCastResult.UnitNotInfront; - } } return SpellCastResult.SpellCastOk; }