aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2021-04-12 22:34:10 +0200
committerShauren <shauren.trinity@gmail.com>2021-04-12 22:34:10 +0200
commit38ad6c2cf043c640c798a1467b8ad71265fd9c6c (patch)
tree9526329201292c6194b6778f3034fc913cca0068
parentd2b70397ab98fe8a24a5880b757a50e3736787d3 (diff)
Scripts/Spells: Removed facing requirements from penance healing component
-rw-r--r--src/server/scripts/Spells/spell_priest.cpp9
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;