diff options
author | Shauren <shauren.trinity@gmail.com> | 2021-04-12 22:34:10 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-04-12 22:34:10 +0200 |
commit | 38ad6c2cf043c640c798a1467b8ad71265fd9c6c (patch) | |
tree | 9526329201292c6194b6778f3034fc913cca0068 | |
parent | d2b70397ab98fe8a24a5880b757a50e3736787d3 (diff) |
Scripts/Spells: Removed facing requirements from penance healing component
-rw-r--r-- | src/server/scripts/Spells/spell_priest.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
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; |