From 2e34fa7f67d35c7fa96342ed5cb9862c00cca2ba Mon Sep 17 00:00:00 2001 From: hondacrx Date: Wed, 14 Apr 2021 10:20:09 -0400 Subject: [PATCH] Scripts/Spells: Removed facing requirements from penance healing component Port From (https://github.com/TrinityCore/TrinityCore/commit/38ad6c2cf043c640c798a1467b8ad71265fd9c6c) --- Source/Game/Spells/SpellInfo.cs | 1 + Source/Scripts/Spells/Priest.cs | 9 --------- 2 files changed, 1 insertion(+), 9 deletions(-) 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; }