From 0da6cc71eb23380c30ad83a0fa8b3e39ba8a0c28 Mon Sep 17 00:00:00 2001 From: syssneck <68868567+syssneck@users.noreply.github.com> Date: Mon, 20 Sep 2021 16:16:13 +0200 Subject: [PATCH] fix(DB/creature): add movement to Spindleweb Lurkers (#7894) --- .../updates/pending_db_world/rev_1631712749389773841.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1631712749389773841.sql diff --git a/data/sql/updates/pending_db_world/rev_1631712749389773841.sql b/data/sql/updates/pending_db_world/rev_1631712749389773841.sql new file mode 100644 index 000000000..0196b036f --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1631712749389773841.sql @@ -0,0 +1,7 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1631712749389773841'); + +-- Adds movement to Spindleweb Lurker's +UPDATE `creature` SET `MovementType` = 1, `wander_distance` = 5 WHERE `id` = 16351 AND `guid` IN (82364, 82374, 82377, 82592, 82597, 82604, 82616, 82617, 82382, 82386, 82480, 82691); + +-- Repositioning of one Spindleweb Lurker that spawned in a tree +UPDATE `creature` SET `position_x` = 7110.5, `position_y` = -6149.9, `position_z` = 22.72 WHERE `id` = 16351 AND `guid` = 82604;