From 722237d1ba56cb2f3d10019cc093b08b7b43b436 Mon Sep 17 00:00:00 2001 From: Peter Date: Mon, 1 Feb 2021 22:19:32 +0100 Subject: [PATCH] fix(DB/gameobject): Move location of Chest of The Seven in BRD (#4315) Inside Blackrock Depths the "Chest of The Seven" spawns in a slightly wrong location. - Closes https://github.com/azerothcore/azerothcore-wotlk/issues/4293 Co-authored-by: Zoidwaffle --- data/sql/updates/pending_db_world/rev_1610739863539733975.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1610739863539733975.sql diff --git a/data/sql/updates/pending_db_world/rev_1610739863539733975.sql b/data/sql/updates/pending_db_world/rev_1610739863539733975.sql new file mode 100644 index 000000000..65f7cd503 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1610739863539733975.sql @@ -0,0 +1,4 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1610739863539733975'); + +-- "Chest of The Seven" from Blackrock Depths should spawn in a different position +UPDATE `gameobject` SET `position_x`=1265.55, `position_y`=-284.421, `position_z`=-78.2193, `orientation`=0.786698, `rotation2`=-0.383284, `rotation3`=-0.923631 WHERE `guid`=67872;