From 1dc96266f1e0901abfe764d1c4361e49354329f8 Mon Sep 17 00:00:00 2001 From: Asthalor <87535580+Asthalor@users.noreply.github.com> Date: Fri, 6 Aug 2021 13:30:43 +0200 Subject: [PATCH] fix(DB/Creature): Fixed the spawns of two Heavy War Golem (5854) (#7188) --- .../updates/pending_db_world/rev_1627735957987999500.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1627735957987999500.sql diff --git a/data/sql/updates/pending_db_world/rev_1627735957987999500.sql b/data/sql/updates/pending_db_world/rev_1627735957987999500.sql new file mode 100644 index 000000000..a6305866f --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1627735957987999500.sql @@ -0,0 +1,6 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1627735957987999500'); + +-- Change the spawn points of Heavy War Golem (5854) so they spawn in the bridge +UPDATE `creature` SET `position_x` = -6681.53, `position_y` = -1352.86, `position_z` = 210.77 WHERE (`id` = 5854) AND (`guid` = 5608); +UPDATE `creature` SET `position_x` = -6663.55, `position_y` = -1317.16, `position_z` = 208.48 WHERE (`id` = 5854) AND (`guid` = 5687); +