Skip to content

Commit

Permalink
DB/NPE: Added faction based spawns to spawngroups
Browse files Browse the repository at this point in the history
  • Loading branch information
Naddley committed Nov 19, 2022
1 parent dec28db commit deff234
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions sql/updates/world/master/2022_11_19_00_world.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
-- Alliance
DELETE FROM `spawn_group` WHERE `groupId` = 128 AND `spawnId` IN (1051210, 1051209, 1051266, 1051267, 1051268, 1051893, 1051892, 1051891, 1051898, 1051899, 1051900, 1051901, 1051887, 1051888, 1051890, 1051889, 1051894, 1051895, 1051896, 1051469, 1051897);
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
(128, 0, 1051210),
(128, 0, 1051209),
(128, 0, 1051266),
(128, 0, 1051267),
(128, 0, 1051268),
(128, 0, 1051893),
(128, 0, 1051892),
(128, 0, 1051891),
(128, 0, 1051898),
(128, 0, 1051899),
(128, 0, 1051900),
(128, 0, 1051901),
(128, 0, 1051887),
(128, 0, 1051888),
(128, 0, 1051890),
(128, 0, 1051889),
(128, 0, 1051894),
(128, 0, 1051895),
(128, 0, 1051896),
(128, 0, 1051469),
(128, 0, 1051897);

-- Horde
DELETE FROM `spawn_group` WHERE `groupId` = 129 AND `spawnId` IN (1051212, 1051211, 1051269, 1051270, 1051271);
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
(129, 0, 1051212),
(129, 0, 1051211),
(129, 0, 1051269),
(129, 0, 1051270),
(129, 0, 1051271);

0 comments on commit deff234

Please sign in to comment.