fix(DB/Creature): add path_id to some Ulduar mobs that were missing it (#17055)

* initial

* re-add auras

* REEEEEEEEEEEEEEEEE
This commit is contained in:
Dan
2023-08-24 16:42:07 +02:00
committed by GitHub
parent f9ebb9e081
commit 8308e054b9

View File

@@ -0,0 +1,8 @@
--
SET @GUID := 137481;
DELETE FROM `creature_addon` WHERE `guid` IN (@GUID, @GUID+1, @GUID+2, @GUID+3);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES
(@GUID, (@GUID)*10, 0, 0, 1, 0, 0, '63610'),
(@GUID+1, (@GUID+1)*10, 0, 0, 1, 0, 0, '63610'),
(@GUID+2, (@GUID+2)*10, 0, 0, 1, 0, 0, '63616'),
(@GUID+3, (@GUID+3)*10, 0, 0, 1, 0, 0, '63616');