diff options
author | Killyana <morphone1@gmail.com> | 2020-04-04 16:29:22 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-31 20:28:45 +0100 |
commit | ed2219f0be69c5ec6f51845700dca9bd9aba0c52 (patch) | |
tree | b7c395f95e87e5fae99c7e49bcfe870b200ac0aa /sql | |
parent | 96324ad90838bd2efdfa11e63767bd5901d2f2f8 (diff) |
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)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2021_12_31_17_world_2020_04_04_01_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_12_31_17_world_2020_04_04_01_world.sql b/sql/updates/world/master/2021_12_31_17_world_2020_04_04_01_world.sql new file mode 100644 index 00000000000..b30273d5fed --- /dev/null +++ b/sql/updates/world/master/2021_12_31_17_world_2020_04_04_01_world.sql @@ -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; |