From d30306c250732219601cf2a560e0ff5f94549497 Mon Sep 17 00:00:00 2001 From: Rocco Silipo <108557877+Rorschach91@users.noreply.github.com> Date: Sun, 30 Mar 2025 18:46:37 +0200 Subject: [PATCH] fix(DB/Creature) Remove Immune to Distract Flag on M'uru. (#21815) --- data/sql/updates/pending_db_world/Muru_distract.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 data/sql/updates/pending_db_world/Muru_distract.sql diff --git a/data/sql/updates/pending_db_world/Muru_distract.sql b/data/sql/updates/pending_db_world/Muru_distract.sql new file mode 100644 index 000000000..d427f6659 --- /dev/null +++ b/data/sql/updates/pending_db_world/Muru_distract.sql @@ -0,0 +1,3 @@ + +-- Remove Immune to Distract Flag +UPDATE `creature_template` SET `mechanic_immune_mask` = `mechanic_immune_mask`& ~8 WHERE (`entry` = 25741);