diff options
| author | Venugh <venugh@gmx.net> | 2012-01-13 21:41:45 +0100 |
|---|---|---|
| committer | Venugh <venugh@gmx.net> | 2012-01-13 21:41:45 +0100 |
| commit | e6b159f7ea13bed5054af4d370ed126b4622ccc4 (patch) | |
| tree | 9e5e4a5e005a281a38e006262704792e00cb6de5 /src | |
| parent | 6929fff8d63cc613008260ea65ffaf89401d6bac (diff) | |
Core/Scripts: Correct rand change. thanks to Nayd for explain.
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp b/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp index 50558d76ffc..0e1619ce723 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp @@ -44,13 +44,12 @@ enum eMillhouseSays SAY_BUFFS = 3, SAY_DRINK = 4, SAY_READY = 5, - SAY_KILL_1 = 6, - SAY_KILL_2 = 7, - SAY_PYRO = 8, - SAY_ICEBLOCK = 9, - SAY_LOWHP = 10, - SAY_DEATH = 11, - SAY_COMPLETE = 12, + SAY_KILL = 6, + SAY_PYRO = 7, + SAY_ICEBLOCK = 8, + SAY_LOWHP = 9, + SAY_DEATH = 10, + SAY_COMPLETE = 11, }; enum eMillhouseSpells @@ -126,8 +125,7 @@ class npc_millhouse_manastorm : public CreatureScript void KilledUnit(Unit* /*victim*/) { - Talk(SAY_KILL_1); - Talk(SAY_KILL_2); + Talk(SAY_KILL); } void JustDied(Unit* /*victim*/) |
