From dc230d101cf85938141f3545ceab905941f099a2 Mon Sep 17 00:00:00 2001 From: "Jan M. D. Hansen" <53914190+jamadaha@users.noreply.github.com> Date: Fri, 16 Jul 2021 09:48:02 +0200 Subject: [PATCH] fix(DB): ore node now spawns above ground (#6876) - Prevents the ore node (GUID 75523) in Hillsbrad Foothills from spawning in the ground, by it now spawning on a nearby hill - Closes #5942 --- data/sql/updates/pending_db_world/rev_1625958180512949700.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1625958180512949700.sql diff --git a/data/sql/updates/pending_db_world/rev_1625958180512949700.sql b/data/sql/updates/pending_db_world/rev_1625958180512949700.sql new file mode 100644 index 000000000..6344c29df --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1625958180512949700.sql @@ -0,0 +1,4 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1625958180512949700'); + +-- move ore node above to a nearby hill +UPDATE `gameobject` SET `position_x` = -781.1, `position_y` = 185.2, `position_z` = 59.6 WHERE `id` = 103711 AND `guid` = 75523;