diff options
| author | offl <offl@users.noreply.github.com> | 2021-01-31 18:39:25 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-03-06 19:39:10 +0100 |
| commit | cdd28756494c2b66e3b6d846367879bb97a764f7 (patch) | |
| tree | 1f1c3f58ef09d9474fb430c5710d02cffe00c553 /sql | |
| parent | 497fdb42ab90a33e775aef1318b314da187fd064 (diff) | |
DB/Creature: Remove UNIT_FLAG_PACIFIED
Ref #25764
(cherry picked from commit a9c83d556635a51c13cea5e231e879a67d2e77ff)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2022_03_06_21_world_2021_01_31_05_world.sql | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_03_06_21_world_2021_01_31_05_world.sql b/sql/updates/world/master/2022_03_06_21_world_2021_01_31_05_world.sql new file mode 100644 index 00000000000..cb2e4c70b7a --- /dev/null +++ b/sql/updates/world/master/2022_03_06_21_world_2021_01_31_05_world.sql @@ -0,0 +1,25 @@ +-- High Justice Grimstone +UPDATE `creature_template` SET `unit_flags` = `unit_flags` &~ 131072, `RangeAttackTime` = 2000 WHERE `entry` = 10096; + +-- Grobbulus Cloud +UPDATE `creature_template` SET `speed_walk` = 0.004, `speed_run` = 0.00142857, `unit_flags` = `unit_flags` &~ 131072 WHERE `entry` IN (16363,29379); + +-- Hellfire Training Dummy +UPDATE `creature_template` SET `speed_walk` = 1, `speed_run` = 1, `BaseAttackTime` = 2000, `RangeAttackTime` = 2000, `unit_flags` = `unit_flags` &~ 131072 WHERE `entry` = 17578; +DELETE FROM `creature_template_addon` WHERE `entry` = 17578; +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES +(17578,0,0,0,1,0,0,"7056"); + +-- The Lich King +UPDATE `creature_template` SET `unit_flags` = `unit_flags` &~ 131072 WHERE `entry` = 24248; + +-- Defeated Argent Footman +UPDATE `creature_template_addon` SET `bytes1` = 0, `bytes2` = 1, `emote` = 0, `auras` = "29266" WHERE `entry` = 28156; +UPDATE `creature_template` SET `unit_flags` = 33536, `dynamicflags` = 0 WHERE `entry` = 28156; +UPDATE `smart_scripts` SET `action_param2` = 2 WHERE `entryorguid` = 28156 AND `source_type` = 0 AND `id` IN (0,1); + +-- Alexstrasza the Life-Binder +UPDATE `creature_template` SET `unit_flags` = `unit_flags` &~ 131072 WHERE `entry` = 31333; + +-- Infernal Attacker +UPDATE `creature_template` SET `speed_walk` = 1, `unit_flags` = 256+33554432 WHERE `entry` IN (21419,21786); |
