From 947a97933cf7281274df9fc1aebeddcf391a8179 Mon Sep 17 00:00:00 2001 From: dillyns <49765217+dillyns@users.noreply.github.com> Date: Thu, 17 Jun 2021 10:11:14 -0400 Subject: [PATCH] fix(DB/Creature): Great Goretusk spawned inside a tree in Redridge Mountains (#6271) Moved the spawn point - Closes #6116 - Closes chromiecraft/chromiecraft#729 --- .../updates/pending_db_world/rev_1623161552319933800.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1623161552319933800.sql diff --git a/data/sql/updates/pending_db_world/rev_1623161552319933800.sql b/data/sql/updates/pending_db_world/rev_1623161552319933800.sql new file mode 100644 index 000000000..d6c5a210b --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1623161552319933800.sql @@ -0,0 +1,7 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1623161552319933800'); + +SET @NPC = 6707; + +UPDATE `creature` +SET `position_x` = -9296.069336, `position_y` = -1887.173462, `position_z` = 78.376251 +WHERE `guid` = @NPC;