diff options
author | Killyana <morphone1@gmail.com> | 2020-04-04 16:29:22 +0200 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2020-04-04 16:29:22 +0200 |
commit | a7636c39d67b17b223952861cc8c6da2725a3a3b (patch) | |
tree | f51c626d7000ccb4ae7838d1e93785706c63dd2a | |
parent | 3da8f37ddbfda2d9fa20ec1affd2ae05e6fc037c (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
-rw-r--r-- | sql/updates/world/3.3.5/2020_04_04_01_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2020_04_04_01_world.sql b/sql/updates/world/3.3.5/2020_04_04_01_world.sql new file mode 100644 index 00000000000..b30273d5fed --- /dev/null +++ b/sql/updates/world/3.3.5/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; |