fix(Scripts/Spells): Fixed logic in Glyph of Prayer of Healing script. (#9502)

Fixes #8645
This commit is contained in:
UltraNix
2021-12-10 13:11:26 +01:00
committed by GitHub
parent 0f1c0c154d
commit 8b200fae91

View File

@@ -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;
}