mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
fix(DB/Creature): Sniffed Values for 'Winter Veil Gifts' spawns (#20472)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
-- Update creature 'Winter Veil Gifts' with sniffed values
|
||||
-- updated spawns
|
||||
DELETE FROM `creature` WHERE (`id1` IN (15745, 15746))
|
||||
AND (`guid` IN (3565, 3566));
|
||||
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`, `CreateObject`, `Comment`) VALUES
|
||||
(3565, 15745, 0, 1, 1, 0, -4912.6767578125, -976.28009033203125, 501.53271484375, 2.49582076072692871, 120, 0, 0, 0, 0, 0, "", 52237, 1, NULL),
|
||||
(3566, 15746, 1, 1, 1, 0, 1629.0364990234375, -4414.37841796875, 16.23163604736328125, 0.436332315206527709, 120, 0, 0, 0, 0, 0, "", 52237, 1, NULL);
|
||||
|
||||
-- enable all spawns for eventEntry 52
|
||||
DELETE FROM `game_event_creature` WHERE (`eventEntry` = 52)
|
||||
AND (`guid` IN (SELECT `guid` FROM `creature` WHERE `id1` IN (15745, 15746)));
|
||||
INSERT INTO `game_event_creature` (SELECT 52, `guid` FROM `creature` WHERE `id1` IN (15745, 15746));
|
||||
Reference in New Issue
Block a user