diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2025-04-09 10:21:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-09 10:21:39 +0200 |
commit | f5e80a664d0e45efbe9cba92fe51cee9ae70f102 (patch) | |
tree | 7f7e30fe341c2b0c849a46598a5b446037fcb024 | |
parent | c3cb40077b784930bed8c2431fb75005c3f5f2c2 (diff) |
DB/Creature: Remove bleed immunity from some npc part 1
closes #30785
by CraftedRO
-rw-r--r-- | sql/updates/world/3.3.5/2025_04_08_01_world.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2025_04_08_01_world.sql b/sql/updates/world/3.3.5/2025_04_08_01_world.sql new file mode 100644 index 00000000000..ee04a15ec96 --- /dev/null +++ b/sql/updates/world/3.3.5/2025_04_08_01_world.sql @@ -0,0 +1,12 @@ +-- Remove bleed immunity from some npc +UPDATE `creature_template` SET `mechanic_immune_mask`=`mechanic_immune_mask`&~16384 WHERE `entry` IN ( +36, -- Harvest Golem +114, -- Harvest Watcher +32471, -- Griegen +32495, -- Hildana Deathstealer +32501, -- High Thane Jorfus +19166, -- Tempest-Forge Patroller +20040, -- Crystalcore Devastator +20041, -- Crystalcore Sentinel +4952, -- Theramore Combat Dummy +4957); -- Theramore Combat Dummy 4 |