From 3c3f1a79a92bf76e0b4f90cb34d6afbea16ea01d Mon Sep 17 00:00:00 2001 From: Nolt Date: Mon, 22 Mar 2021 16:18:26 +0100 Subject: [PATCH] Fix for wrong spawn mining veins (#4938) --- .../rev_1616369823354830255.sql | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1616369823354830255.sql diff --git a/data/sql/updates/pending_db_world/rev_1616369823354830255.sql b/data/sql/updates/pending_db_world/rev_1616369823354830255.sql new file mode 100644 index 000000000..36fbc70a3 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1616369823354830255.sql @@ -0,0 +1,23 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1616369823354830255'); + +-- Update Incorrect spawn of Tin Vein in the Barrens +UPDATE `gameobject` set `position_z`=94.7714 where `guid` = 5649; + +-- Delete wrong spam Silver Vein in Ashenvale +DELETE FROM `gameobject` WHERE `guid` in (5708, 5710, 5711, 5712, 5713); + +-- Swamp of Sorrows fix spawn +DELETE FROM `gameobject` WHERE `guid` in (32756, 6629, 30348); + +-- Western Plaguelands fix spawn +DELETE FROM `gameobject` WHERE `guid` in (45552, 45561, 45502, 5816, 7193, 63994, 9641, 5770, 5944); + +-- Arathi Hinterlands fix spawn +DELETE FROM `gameobject` WHERE `guid` in (70262, 70263, 70264, 70265, 70266, 70267); +DELETE FROM `gameobject` WHERE `guid` in (63520, 65233); + +-- Searing Gorge fix spawn +DELETE FROM `gameobject` WHERE `guid` in (13216, 64839, 56790, 64843, 65291); + +-- Delete nonexisting pool_objects in Western Plaguelands underwater +DELETE FROM `pool_gameobject` where `guid` in (70262, 70263, 70264, 70265, 70266, 70267);