From a22bd38d9847c25785256c144773777eb0c51147 Mon Sep 17 00:00:00 2001 From: buddiman Date: Thu, 17 Jun 2021 19:27:16 +0200 Subject: [PATCH] fix(DB/gameobject): Unreachable Copper vein (#6274) - copper vein with the guid 5149 is now moved on top of the cliff - this ensures it is reachable by players again - Closes https://github.com/azerothcore/azerothcore-wotlk/issues/6270 - Closes https://github.com/chromiecraft/chromiecraft/issues/807 --- .../updates/pending_db_world/rev_1623196877899764500.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1623196877899764500.sql diff --git a/data/sql/updates/pending_db_world/rev_1623196877899764500.sql b/data/sql/updates/pending_db_world/rev_1623196877899764500.sql new file mode 100644 index 000000000..7e462b868 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1623196877899764500.sql @@ -0,0 +1,6 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1623196877899764500'); + +-- Update unreachable copper vein +UPDATE `gameobject` +SET `position_x`=-9144, `position_y`=-2078, `position_z`=125, `orientation`=3.369 +WHERE `guid`=5149 AND `id`=1731;