aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/Northrend
diff options
context:
space:
mode:
authorManuel <manue.l@live.com.ar>2011-01-09 20:44:33 -0300
committerManuel <manue.l@live.com.ar>2011-01-09 20:44:33 -0300
commit014714fb1789083abbfb6b686c351c1f3ce50380 (patch)
tree16e5c653e2c4d2bec6caad3c85755ad537c31bf6 /src/server/scripts/Northrend
parent8c939165b0a6cef1282249e32a84ec74fba79e22 (diff)
Core: Killing magic numbers.
Diffstat (limited to 'src/server/scripts/Northrend')
-rw-r--r--src/server/scripts/Northrend/isle_of_conquest.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/server/scripts/Northrend/isle_of_conquest.cpp b/src/server/scripts/Northrend/isle_of_conquest.cpp
index b70f8de4b4c..2a351e3441a 100644
--- a/src/server/scripts/Northrend/isle_of_conquest.cpp
+++ b/src/server/scripts/Northrend/isle_of_conquest.cpp
@@ -39,17 +39,18 @@ class npc_four_car_garage : public CreatureScript
switch(me->GetEntry())
{
case NPC_DEMOLISHER:
- spellId = 68365;
+ spellId = SPELL_DRIVING_CREDIT_DEMOLISHER;
break;
- case NPC_GLAIVE_THROWER:
- spellId = 68363;
+ case NPC_GLAIVE_THROWER_A:
+ case NPC_GLAIVE_THROWER_H:
+ spellId = SPELL_DRIVING_CREDIT_GLAIVE;
break;
case NPC_SIEGE_ENGINE_H:
case NPC_SIEGE_ENGINE_A:
- spellId = 68364;
+ spellId = SPELL_DRIVING_CREDIT_SIEGE;
break;
case NPC_CATAPULT:
- spellId = 68362;
+ spellId = SPELL_DRIVING_CREDIT_CATAPULT;
break;
default:
return;