mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 02:50:29 +00:00
fix(DB/GameEvent): Add Arena Seasons 1 and 2 to game_event (#13999)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
--
|
||||
DELETE FROM `game_event` WHERE `eventEntry` IN (75, 76) AND `description` LIKE '%Arena Season%';
|
||||
INSERT INTO `game_event` (`eventEntry`, `description`) VALUES
|
||||
(75, 'Arena Season 1'),
|
||||
(76, 'Arena Season 2');
|
||||
DELETE FROM `game_event_arena_seasons` WHERE `eventEntry` IN (75, 76) AND `season` IN (1, 2);
|
||||
INSERT INTO `game_event_arena_seasons` (`eventEntry`, `season`) VALUES
|
||||
(75, 1),
|
||||
(76, 2);
|
||||
Reference in New Issue
Block a user