mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 00:18:43 +01:00
DB/BH: linked trash to Alizabal encounter
This commit is contained in:
15
sql/updates/world/4.3.4/2020_08_31_04_world.sql
Normal file
15
sql/updates/world/4.3.4/2020_08_31_04_world.sql
Normal file
@@ -0,0 +1,15 @@
|
||||
UPDATE `instance_template` SET `parent`= 732 WHERE `map`= 757;
|
||||
|
||||
SET @SPAWNGROUP := 443;
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN @SPAWNGROUP+0 AND @SPAWNGROUP+3;
|
||||
INSERT INTO `spawn_group_template` (`groupId`, `groupName`, `groupFlags`) VALUES
|
||||
(@SPAWNGROUP+0, 'Baradin Hold - Alizabal Trash', 4);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId`= @SPAWNGROUP+0;
|
||||
INSERT INTO `spawn_group` (`groupId`, `spawnType`, `spawnId`) VALUES
|
||||
(@SPAWNGROUP+0, 0, 266710),
|
||||
(@SPAWNGROUP+0, 0, 266690);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `instanceMapId`= 757;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`, `bossStateId`, `bossStates`, `spawnGroupId`, `flags`) VALUES
|
||||
(757, 2, 17, @SPAWNGROUP+0, 1); -- Enable group when Alizabal is not DONE
|
||||
Reference in New Issue
Block a user