From ae543a532a0a0e1b1e274f72ae3cea88dc01002e Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Tue, 18 Jun 2019 22:49:15 +0200 Subject: [PATCH] Core/Spells: fixed selecting the correct target number for Wild Growth --- 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 5630da2f5f0..6274e3ea275 100644 --- a/src/server/scripts/Spells/spell_druid.cpp +++ b/src/server/scripts/Spells/spell_druid.cpp @@ -1112,7 +1112,7 @@ class spell_dru_wild_growth : public SpellScript { targets.remove_if(RaidCheck(GetCaster())); - uint8 maxTargets = GetSpellInfo()->Effects[EFFECT_0].BasePoints; + uint8 maxTargets = GetSpellInfo()->Effects[EFFECT_2].BasePoints; // Tree of Life bonus if (GetCaster()->HasAura(SPELL_DRUID_TREE_OF_LIFE))