From 7c5bcecf581d3820055e1b0399ba5979038c4487 Mon Sep 17 00:00:00 2001 From: whiskeytangofoxy <65976763+whiskeytangofoxy@users.noreply.github.com> Date: Fri, 23 Jun 2023 18:19:01 -0500 Subject: [PATCH] fix(DB/Creature): Dustbelcher NPC Movement (#16499) fix(DB/Creature): Dustbelcher NPC MovementType --- data/sql/updates/pending_db_world/dustbelchernpcfix.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/sql/updates/pending_db_world/dustbelchernpcfix.sql diff --git a/data/sql/updates/pending_db_world/dustbelchernpcfix.sql b/data/sql/updates/pending_db_world/dustbelchernpcfix.sql new file mode 100644 index 000000000..eaf2beadd --- /dev/null +++ b/data/sql/updates/pending_db_world/dustbelchernpcfix.sql @@ -0,0 +1,6 @@ +UPDATE `creature` SET `MovementType` = 2 WHERE `guid` IN (6974,6989,7210) AND `id1` IN (2718,2717,2907); +DELETE FROM `creature_addon` WHERE (`guid` IN (6974,6989,7210)); +INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES +(6974, 69740, 1), +(6989, 69890, 1), +(7210, 72100, 1);