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

Add spawns to the game event, an error was made in the original commit https://github.com/TrinityCore/TrinityCore/commit/bbd79e514f1973a46985caf30cef9157086fc3d9

(cherry picked from commit a7636c39d67b17b223952861cc8c6da2725a3a3b)
This commit is contained in:
Killyana
2021-12-31 20:28:45 +01:00
committed by Shauren
parent 96324ad908
commit ed2219f0be
@@ -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;