Core/Spells: fixed Glyph of Wild Growth not causing Wild Growth to hit additional targets

This commit is contained in:
Ovahlord
2022-04-29 22:04:26 +02:00
parent 3fa069b8fc
commit 80a5956574

View File

@@ -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))