diff options
Diffstat (limited to 'src/server/scripts/Spells')
| -rw-r--r-- | src/server/scripts/Spells/spell_druid.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/server/scripts/Spells/spell_druid.cpp b/src/server/scripts/Spells/spell_druid.cpp index e0589b638da..a195e0520fc 100644 --- a/src/server/scripts/Spells/spell_druid.cpp +++ b/src/server/scripts/Spells/spell_druid.cpp @@ -342,7 +342,7 @@ class spell_dru_starfall_dummy : public SpellScriptLoader                  Unit* caster = GetCaster();                  // Shapeshifting into an animal form or mounting cancels the effect -                if (caster->GetCreatureType() == CREATURE_TYPE_BEAST() || caster->IsMounted()) +                if (caster->GetCreatureType() == CREATURE_TYPE_BEAST || caster->IsMounted())                  {                      if (SpellInfo const* spellInfo = GetTriggeringSpell())                          caster->RemoveAurasDueToSpell(spellInfo->Id); | 
