From b478c02773bfe37397d3f4dece961e4c29a05b1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Bertelsen?= Date: Sat, 22 Aug 2026 01:22:25 +0200 Subject: [PATCH] fix(DB/Creature): give Ulduar Clockwork Sappers invisibility and stealth detection (#27252) Co-authored-by: Claude Fable 5 --- data/sql/updates/pending_db_world/rev_1787266581.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1787266581.sql diff --git a/data/sql/updates/pending_db_world/rev_1787266581.sql b/data/sql/updates/pending_db_world/rev_1787266581.sql new file mode 100644 index 000000000..e60b7fc7d --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1787266581.sql @@ -0,0 +1,7 @@ +-- Ulduar: Clockwork Sappers see through invisibility and stealth (retail 3.1 hotfix behavior) +UPDATE `creature_addon` SET `auras` = '18950' WHERE `guid` IN (136586, 136587, 136588, 136589, 136591, 136592); + +DELETE FROM `creature_template_addon` WHERE `entry` IN (34193, 34220); +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES +(34193, 0, 0, 0, 1, 0, 0, '18950'), +(34220, 0, 0, 0, 1, 0, 0, '18950');