DB/Event: Argent Tournament heralds Alliance & Argent Tournament heralds Horde

Add spawns to the game event, an error was made in the original commit bbd79e514f

(cherry picked from commit a7636c39d6)
This commit is contained in:
Killyana
2020-04-04 16:29:22 +02:00
committed by Shauren
parent 96324ad908
commit ed2219f0be

View File

@@ -0,0 +1,7 @@
--
SET @CGUID := 81116;
SET @EVENT_ID := 74;
DELETE FROM `game_event_creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2 AND `eventEntry`=@EVENT_ID;
INSERT INTO `game_event_creature` SELECT @EVENT_ID, creature.guid FROM `creature` WHERE creature.guid BETWEEN @CGUID+0 AND @CGUID+2;
DELETE FROM `game_event_creature` WHERE `guid` BETWEEN @CGUID+3 AND @CGUID+5 AND `eventEntry`=@EVENT_ID+1;
INSERT INTO `game_event_creature` SELECT @EVENT_ID+1, creature.guid FROM `creature` WHERE creature.guid BETWEEN @CGUID+3 AND @CGUID+5;