fix(DB/Creature): Remove Bleed immunities from mechanical & undead creatures (#19304)

* Create rev_1720230463035941600.sql

* Update rev_1720230463035941600.sql
This commit is contained in:
Gultask
2024-07-07 13:58:26 -03:00
committed by GitHub
parent e40b1acb0a
commit d68edd0aec

View File

@@ -0,0 +1,3 @@
--
UPDATE `creature_template` SET `mechanic_immune_mask` = `mechanic_immune_mask`&~16384 WHERE `type` = 9 AND `mechanic_immune_mask`&16384;
UPDATE `creature_template` SET `mechanic_immune_mask` = `mechanic_immune_mask`&~16384 WHERE `type` = 6 AND `mechanic_immune_mask`&16384 AND `entry` NOT IN (4543, 8317, 11561, 16194, 16215, 16216, 28443);