aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp
index 8090c5a7d29..bd7c3519926 100644
--- a/src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp
+++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp
@@ -26,9 +26,15 @@ EndScriptData */
#include "ScriptMgr.h"
#include "ScriptedCreature.h"
-#define SAY_SPAWN "TIMMY!"
+enum Says
+{
+ SAY_SPAWN = 0
+};
-#define SPELL_RAVENOUSCLAW 17470
+enum Spells
+{
+ SPELL_RAVENOUSCLAW = 17470
+};
class boss_timmy_the_cruel : public CreatureScript
{
@@ -57,7 +63,7 @@ public:
{
if (!HasYelled)
{
- me->MonsterYell(SAY_SPAWN, LANG_UNIVERSAL, 0);
+ Talk(SAY_SPAWN);
HasYelled = true;
}
}