From 38ad6c2cf043c640c798a1467b8ad71265fd9c6c Mon Sep 17 00:00:00 2001 From: Shauren Date: Mon, 12 Apr 2021 22:34:10 +0200 Subject: Scripts/Spells: Removed facing requirements from penance healing component --- src/server/scripts/Spells/spell_priest.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src') diff --git a/src/server/scripts/Spells/spell_priest.cpp b/src/server/scripts/Spells/spell_priest.cpp index c4c63b35ee3..6e452167e00 100644 --- a/src/server/scripts/Spells/spell_priest.cpp +++ b/src/server/scripts/Spells/spell_priest.cpp @@ -525,15 +525,6 @@ class spell_pri_penance : public SpellScriptLoader if (!caster->isInFront(target)) return SPELL_FAILED_UNIT_NOT_INFRONT; } - else - { - //Support for modifications of this spell in Legion with The Penitent talent (7.1.5) - if(!caster->HasAura(SPELL_PRIEST_THE_PENITENT_AURA)) - return SPELL_FAILED_BAD_TARGETS; - - if (!caster->isInFront(target)) - return SPELL_FAILED_UNIT_NOT_INFRONT; - } } return SPELL_CAST_OK; -- cgit v1.2.3