Script/CoS: fix DB error and remove wrong on-death text for Chrono-Lord Epoch.

This commit is contained in:
Wyrserth
2019-06-26 12:01:31 +02:00
parent fe744977c9
commit 22b222b44e
2 changed files with 4 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
--
DELETE FROM `creature_text` WHERE `CreatureID`=26532 AND `GroupID`=4;
DELETE FROM `spawn_group` WHERE `groupId`=52;
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES (52, 0, 111214);

View File

@@ -37,7 +37,6 @@ enum Yells
{
SAY_TIME_WARP = 2,
SAY_SLAY = 3,
SAY_DEATH = 4
};
enum Events
@@ -139,7 +138,6 @@ class boss_epoch : public CreatureScript
void JustDied(Unit* /*killer*/) override
{
Talk(SAY_DEATH);
_JustDied();
}