aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Spells/spell_druid.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_druid.cpp b/src/server/scripts/Spells/spell_druid.cpp
index 868805ac33f..ceea646a319 100644
--- a/src/server/scripts/Spells/spell_druid.cpp
+++ b/src/server/scripts/Spells/spell_druid.cpp
@@ -318,7 +318,8 @@ class spell_dru_cultivation : public AuraScript
{
bool Validate(SpellInfo const* /*spellInfo*/) override
{
- return ValidateSpellInfo({ SPELL_DRUID_CULTIVATION, SPELL_DRUID_CULTIVATION_HEAL });
+ return ValidateSpellInfo({ SPELL_DRUID_CULTIVATION_HEAL })
+ && ValidateSpellEffect({ { SPELL_DRUID_CULTIVATION, EFFECT_0 } });
}
void HandleOnTick(AuraEffect const* aurEff) const