From 80a5956574ec6fa53059c664c339b09e23c07b6d Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Fri, 29 Apr 2022 22:04:26 +0200 Subject: [PATCH] Core/Spells: fixed Glyph of Wild Growth not causing Wild Growth to hit additional targets --- src/server/scripts/Spells/spell_druid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/scripts/Spells/spell_druid.cpp b/src/server/scripts/Spells/spell_druid.cpp index 1e54391f949..acc00ddd952 100644 --- a/src/server/scripts/Spells/spell_druid.cpp +++ b/src/server/scripts/Spells/spell_druid.cpp @@ -1121,7 +1121,7 @@ class spell_dru_wild_growth : public SpellScript { targets.remove_if(RaidCheck(GetCaster())); - uint8 maxTargets = GetSpellInfo()->Effects[EFFECT_2].BasePoints; + int32 maxTargets = GetSpellInfo()->Effects[EFFECT_2].CalcValue(GetCaster()); // Tree of Life bonus if (GetCaster()->HasAura(SPELL_DRUID_TREE_OF_LIFE))