fix(DB/linked_respawn): General Angerforge shouldn't respawn adds when dead. (#12887)

Create rev_1661702045258373700.sql
This commit is contained in:
Gultask
2022-09-03 04:00:32 -03:00
committed by GitHub
parent 58f0c05002
commit b790038af8

View File

@@ -0,0 +1,8 @@
-- General Angerforge
SET @BOSS=45954;
DELETE FROM `linked_respawn` WHERE `linkedGuid`=@BOSS AND `guid` IN (45955,45956,45958,45959);
INSERT INTO `linked_respawn` (`guid`, `linkedGuid`, `linkType`) VALUES
(45955, @BOSS, 0),
(45956, @BOSS, 0),
(45958, @BOSS, 0),
(45959, @BOSS, 0);