mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
DB/Naxxramas: Added spawn groups for Sapphiron and Kel'Thuzad
This commit is contained in:
15
sql/updates/world/3.3.5/2022_09_30_00_world.sql
Normal file
15
sql/updates/world/3.3.5/2022_09_30_00_world.sql
Normal file
@@ -0,0 +1,15 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` IN (323,324);
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(323,'Naxxramas - Sapphiron',4),
|
||||
(324,'Naxxramas - Kel''Thuzad',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` IN (323,324);
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(533,13,23,323,1),
|
||||
(533,14,23,324,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` IN (323,324);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(323,0,133932),
|
||||
(323,1,5517),
|
||||
(324,0,133933);
|
||||
Reference in New Issue
Block a user