From 8861e16e6467dbfc5e5a1bdd2cc0cfef3c3623be Mon Sep 17 00:00:00 2001 From: Dan <83884799+elthehablo@users.noreply.github.com> Date: Mon, 29 Jan 2024 03:41:05 +0100 Subject: [PATCH] fix(DB/TheEye): fix some trash immunities in The Tempest Keep (#18233) * initial * codestyle? --- data/sql/updates/pending_db_world/tk-immunities-fix.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 data/sql/updates/pending_db_world/tk-immunities-fix.sql diff --git a/data/sql/updates/pending_db_world/tk-immunities-fix.sql b/data/sql/updates/pending_db_world/tk-immunities-fix.sql new file mode 100644 index 000000000..49132807b --- /dev/null +++ b/data/sql/updates/pending_db_world/tk-immunities-fix.sql @@ -0,0 +1,3 @@ +-- 20033 and 20034 were 1|2048 and 20047 was 2048 +UPDATE `creature_template` SET `mechanic_immune_mask` = 0 WHERE `entry` IN (20033, 20034); +UPDATE `creature_template` SET `mechanic_immune_mask` = 256|33554432 WHERE `entry` = 20047;