From ec8f681bd6a4409e9128553dde4b9bb7ba7c6c2f Mon Sep 17 00:00:00 2001 From: ArthurXL2G <62242396+ArthurXL2G@users.noreply.github.com> Date: Sun, 12 Nov 2023 22:26:51 +0800 Subject: [PATCH] fix(DB/Creature): Dustbelcher NPC MovementType issue (#17663) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Create dustbelchernpcfix-2.0.sql Based on Pull requests: 'fix(DB/Creature): Dustbelcher NPC MovementType #16499' There is still a small omission: Dustbelcher Wyrmhunter,id1=2716 id1=2907,it's Dustbelcher Mystic Dustbelcher Wyrmhunter with two ‘guid’: 6973 6975 --- .../updates/pending_db_world/dustbelchernpcfix-2.0.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/dustbelchernpcfix-2.0.sql diff --git a/data/sql/updates/pending_db_world/dustbelchernpcfix-2.0.sql b/data/sql/updates/pending_db_world/dustbelchernpcfix-2.0.sql new file mode 100644 index 000000000..b0967bcab --- /dev/null +++ b/data/sql/updates/pending_db_world/dustbelchernpcfix-2.0.sql @@ -0,0 +1,8 @@ +UPDATE `creature` SET `MovementType` = 2 WHERE `guid` IN (6974,6989,6973,6975,7210) AND `id1` IN (2718,2717,2716,2716,2907); +DELETE FROM `creature_addon` WHERE (`guid` IN (6974,6989,6973,6975,7210)); +INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES +(6974, 69740, 1), +(6989, 69890, 1), +(6973, 69730, 1), +(6975, 69750, 1), +(7210, 72100, 1);