aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMeji <alvaro.megias@outlook.com>2022-12-04 17:26:43 +0100
committerMeji <alvaro.megias@outlook.com>2022-12-04 17:26:43 +0100
commit0ac301c1fb3f9a669c6c7bb83d88b54b37320d79 (patch)
tree52004684bbdde45c3d44a0055e6731cda5245ac1
parent174828fb759fb95a7b95464f9d747af5a4270e84 (diff)
DB/Durotar: Added missing spawn for Hallow's End
-rw-r--r--sql/updates/world/master/2022_12_04_00_world.sql12
1 files changed, 12 insertions, 0 deletions
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);