From 9deb8fecb7695c566ccc3e6f7f93954c4efdb47a Mon Sep 17 00:00:00 2001 From: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> Date: Fri, 10 Feb 2023 16:18:23 -0500 Subject: [PATCH] fix(DB/Creature): Remove bleed immunity from Escape from Durnholde bosses. (#14937) --- data/sql/updates/pending_db_world/durnholde-immunity.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 data/sql/updates/pending_db_world/durnholde-immunity.sql diff --git a/data/sql/updates/pending_db_world/durnholde-immunity.sql b/data/sql/updates/pending_db_world/durnholde-immunity.sql new file mode 100644 index 000000000..4d984ffd6 --- /dev/null +++ b/data/sql/updates/pending_db_world/durnholde-immunity.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `mechanic_immune_mask` = `mechanic_immune_mask` &~ 16384 WHERE `entry` IN (17848, 17862, 18096, 20521, 20531, 20535);