From e26dd4bd9204caf10e8894666e6a4128cdb19ad4 Mon Sep 17 00:00:00 2001 From: dillyns <49765217+dillyns@users.noreply.github.com> Date: Mon, 14 Jun 2021 17:39:12 -0400 Subject: [PATCH] fix(DB/Creature): Firemane Flamecaller Spawning Inside Wall (#6260) Moved the spawn point and added wander - Closes #5766 - Closes chromiecraft/chromiecraft#594 --- .../updates/pending_db_world/rev_1623093110337112400.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1623093110337112400.sql diff --git a/data/sql/updates/pending_db_world/rev_1623093110337112400.sql b/data/sql/updates/pending_db_world/rev_1623093110337112400.sql new file mode 100644 index 000000000..f5b3d59d3 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1623093110337112400.sql @@ -0,0 +1,7 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1623093110337112400'); + +SET @NPC = 30504; + +UPDATE `creature` +SET `position_x` = -4960.708496, `position_y` = -3828.589600, `position_z` = 43.382378, `wander_distance` = 5, `MovementType` = 1 +WHERE `guid` = @NPC;