diff options
| author | Nay <dnpd.dd@gmail.com> | 2012-02-18 23:03:41 +0000 |
|---|---|---|
| committer | Nay <dnpd.dd@gmail.com> | 2012-02-18 23:03:41 +0000 |
| commit | 0a0233b215c546090d549d67ab0edcd0cecda9f0 (patch) | |
| tree | b83699f93ef8baebc78e17b65b7865f416098c15 /src/server/scripts | |
| parent | 703ad48890dbd55bafd5698748322d0ccec85bbe (diff) | |
Core/Packets: Use a single method to send SMSG_ACTIVATETAXIREPLY
Also fix a typo introduced in 703ad4889
Diffstat (limited to 'src/server/scripts')
| -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); |
