From 8b200fae912316b022ba23b44d7c256484e28f7f Mon Sep 17 00:00:00 2001 From: UltraNix <80540499+UltraNix@users.noreply.github.com> Date: Fri, 10 Dec 2021 13:11:26 +0100 Subject: [PATCH] fix(Scripts/Spells): Fixed logic in Glyph of Prayer of Healing script. (#9502) Fixes #8645 --- src/server/scripts/Spells/spell_priest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/scripts/Spells/spell_priest.cpp b/src/server/scripts/Spells/spell_priest.cpp index 700a1698c..78fd2df69 100644 --- a/src/server/scripts/Spells/spell_priest.cpp +++ b/src/server/scripts/Spells/spell_priest.cpp @@ -242,7 +242,7 @@ class spell_pri_glyph_of_prayer_of_healing : public AuraScript PreventDefaultAction(); HealInfo* healInfo = eventInfo.GetHealInfo(); - if (!healInfo || healInfo->GetHeal()) + if (!healInfo || !healInfo->GetHeal()) { return; }