diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Kalimdor/zone_felwood.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/scripts/Kalimdor/zone_felwood.cpp b/src/server/scripts/Kalimdor/zone_felwood.cpp index 962506f0d9e..7e698348a0c 100644 --- a/src/server/scripts/Kalimdor/zone_felwood.cpp +++ b/src/server/scripts/Kalimdor/zone_felwood.cpp @@ -33,7 +33,7 @@ enum SwipeHoney { NPC_HONEY_BUNNY = 47308, ITEM_HONEY_GLOB = 62820, - SPELL_BEES = 94064 + SPELL_BEES = 94064 }; class spell_swipe_honey : public SpellScriptLoader @@ -87,7 +87,7 @@ public: enum BeesBEES { - EMOTE_SPELL_TEXT = 47835, + BOSS_EMOTE_BEES = 0, SPELL_BEES_BEES = 88425 }; @@ -105,7 +105,7 @@ public: spell_beesbees() : SpellScriptLoader("spell_beesbees") { } { if (Player* player = GetHitPlayer()) { - honey->AI()->Talk(0, player); + honey->AI()->Talk(BOSS_EMOTE_BEES, player); honey->CastSpell(player, SPELL_BEES_BEES); honey->DespawnOrUnsummon(); } @@ -130,8 +130,8 @@ public: spell_beesbees() : SpellScriptLoader("spell_beesbees") { } enum RuumbosSillyDance { - NPC_DRIZZLE = 47556, - NPC_FERLI = 47558, + NPC_DRIZZLE = 47556, + NPC_FERLI = 47558, MAP_KALIMDOR = 1 }; @@ -177,4 +177,4 @@ void AddSC_felwood() new spell_swipe_honey(); new spell_beesbees(); new spell_ruumbos_silly_dance(); -}
\ No newline at end of file +} |