From 0a0233b215c546090d549d67ab0edcd0cecda9f0 Mon Sep 17 00:00:00 2001 From: Nay Date: Sat, 18 Feb 2012 23:03:41 +0000 Subject: Core/Packets: Use a single method to send SMSG_ACTIVATETAXIREPLY Also fix a typo introduced in 703ad4889 --- src/server/scripts/Spells/spell_druid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/server/scripts/Spells') 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); -- cgit v1.2.3