From 0ac301c1fb3f9a669c6c7bb83d88b54b37320d79 Mon Sep 17 00:00:00 2001 From: Meji Date: Sun, 4 Dec 2022 17:26:43 +0100 Subject: DB/Durotar: Added missing spawn for Hallow's End --- sql/updates/world/master/2022_12_04_00_world.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 sql/updates/world/master/2022_12_04_00_world.sql (limited to 'sql/updates') diff --git a/sql/updates/world/master/2022_12_04_00_world.sql b/sql/updates/world/master/2022_12_04_00_world.sql new file mode 100644 index 00000000000..3752651d81b --- /dev/null +++ b/sql/updates/world/master/2022_12_04_00_world.sql @@ -0,0 +1,12 @@ +SET @OGUID := 248207; +SET @EVENT := 12; + +-- Gameobject spawns +DELETE FROM `gameobject` WHERE `guid`=@OGUID+0; +INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `VerifiedBuild`) VALUES +(@OGUID+0, 186614, 1, 14, 362, '0', 0, 0, 354.647125244140625, -4739.91552734375, 9.8121490478515625, 6.056293010711669921, 0, 0, -0.11320304870605468, 0.993571877479553222, 120, 255, 1, 46340); -- Water Bucket (Area: Razor Hill - Difficulty: 0) + +-- Event spawns +DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid`=@OGUID+0; +INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES +(@EVENT, @OGUID+0); -- cgit v1.2.3