From 290be525a459c8ef0bf02375cf0e03a200828c6c Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Tue, 9 Jul 2019 16:04:14 +0200 Subject: [PATCH] Core/Spells: fixed build --- src/server/scripts/Spells/spell_shaman.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/scripts/Spells/spell_shaman.cpp b/src/server/scripts/Spells/spell_shaman.cpp index 30e7e22fad8..265438798a7 100644 --- a/src/server/scripts/Spells/spell_shaman.cpp +++ b/src/server/scripts/Spells/spell_shaman.cpp @@ -1635,7 +1635,7 @@ class spell_sha_healing_rain_triggered : public SpellScript void HandleHeal(SpellEffIndex /*effIndex*/) { - if (GetHitHeal()() && _targets > 6) + if (GetHitHeal() && _targets > 6) SetHitHeal((GetHitHeal() * 6) / _targets); }