From b1d72f14a7c9e9bf8a4b4b78461a9aef7313d53f Mon Sep 17 00:00:00 2001 From: Rocco Silipo <108557877+Rorschach91@users.noreply.github.com> Date: Tue, 14 Jan 2025 11:23:32 +0100 Subject: [PATCH] fix(DB/Creature) Remove double Nerub'ar Victims and set a Crystalline Tender movement type to 0. (#21153) --- data/sql/updates/pending_db_world/Nerub_ar_Victim.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/sql/updates/pending_db_world/Nerub_ar_Victim.sql diff --git a/data/sql/updates/pending_db_world/Nerub_ar_Victim.sql b/data/sql/updates/pending_db_world/Nerub_ar_Victim.sql new file mode 100644 index 000000000..a8e411123 --- /dev/null +++ b/data/sql/updates/pending_db_world/Nerub_ar_Victim.sql @@ -0,0 +1,6 @@ + +-- Delete Double Nerub'ar Victims +DELETE FROM `creature` WHERE (`id1` = 25284) AND (`guid` IN (143230, 143231, 143232, 143263, 143264, 143268, 143269, 143271, 143272, 143273)); + +-- Set MT to 0 for a Crystalline Tender inside The Nexus (dungeon). +UPDATE `creature` SET `MovementType` = 0 WHERE (`id1` = 28231) AND (`guid` IN (126441));