aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMalcrom <malcromdev@gmail.com>2014-09-12 12:40:58 -0230
committerMalcrom <malcromdev@gmail.com>2014-09-12 12:40:58 -0230
commitbe8111b0a21308e78435e9bc20bbbb2804d51c78 (patch)
tree004db87ba815af2e5cd9a009e12ba00ca2678923 /src
parent43597c44749b2f7a92155b4c172947269c57f20d (diff)
Scripting: Felwood: A little cleanup to my previous commit
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Kalimdor/zone_felwood.cpp12
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
+}