diff options
| author | offl <offl@users.noreply.github.com> | 2021-01-10 01:11:08 +0200 |
|---|---|---|
| committer | offl <offl@users.noreply.github.com> | 2021-01-10 01:11:08 +0200 |
| commit | eb1806740a5b0cfd05ad75492277f19999658c7a (patch) | |
| tree | defa306cf9de278c1a28caa5720b8c024049d6c4 | |
| parent | 817bd92a2ae4f9c107961c9ac0d8e109f4b46be7 (diff) | |
DB/Creature: Remove UNIT_FLAG_NOT_ATTACKABLE_1
Ref #25764
| -rw-r--r-- | sql/updates/world/3.3.5/2021_01_10_00_world.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2021_01_10_00_world.sql b/sql/updates/world/3.3.5/2021_01_10_00_world.sql new file mode 100644 index 00000000000..3388183b09f --- /dev/null +++ b/sql/updates/world/3.3.5/2021_01_10_00_world.sql @@ -0,0 +1,10 @@ +-- +UPDATE `creature_template` SET `unit_flags` = `unit_flags` &~ 0x00000080 WHERE `entry` = 30407; + +UPDATE `creature_template_addon` SET `bytes1` = 0 WHERE `entry` = 20561; +UPDATE `creature_template` SET `speed_walk` = 1, `BaseAttackTime` = 2000, `RangeAttackTime` = 2000, `unit_flags` = 32768, `dynamicflags` = 0 WHERE `entry` = 20561; + +UPDATE `creature_template` SET `unit_flags` = 768 WHERE `entry` BETWEEN 24874 AND 24877; +UPDATE `creature_template` SET `unit_flags` = 33555200 WHERE `entry` BETWEEN 5772 AND 5773; +UPDATE `creature_template` SET `unit_flags` = `unit_flags` &~ 0x00000080 WHERE `entry` IN (24284,36208); +UPDATE `creature_template` SET `unit_flags` = 0 WHERE `entry` = 26688; |
