From 191fabe085e8be6f4c1887146ee21f477a2f4c2d Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Thu, 25 Feb 2021 16:48:07 +0100 Subject: [PATCH] DB/BoT: make Antechamber trash npcs immune to charm and make Twilight Soul Blade immune to all kinds of crowd control mechanics --- sql/updates/world/4.3.4/2021_02_25_03_world.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sql/updates/world/4.3.4/2021_02_25_03_world.sql diff --git a/sql/updates/world/4.3.4/2021_02_25_03_world.sql b/sql/updates/world/4.3.4/2021_02_25_03_world.sql new file mode 100644 index 00000000000..6132cebe7c5 --- /dev/null +++ b/sql/updates/world/4.3.4/2021_02_25_03_world.sql @@ -0,0 +1,2 @@ +UPDATE `creature_template` SET `mechanic_immune_mask`= 0x1 | 0x2 | 0x4 | 0x8 | 0x10 | 0x20 | 0x40 | 0x200 | 0x800 | 0x1000 | 0x2000 | 0x10000 | 0x400000 | 0x800000, `flags_extra`= `flags_extra` | 0x40000000 WHERE `entry`= 45265; +UPDATE `creature_template` SET `mechanic_immune_mask`= 0x1 WHERE `entry` IN (45264, 45261, 45266, 45267);