diff options
author | faq <faq@users.noreply.github.com> | 2020-09-18 17:24:02 +0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-02-27 00:28:25 +0100 |
commit | c8c456a7dccba8eacb67346e87fe528f1e4b8d69 (patch) | |
tree | 870f8961a5b545853c4357f5f02a4a6b8101cb5d | |
parent | 513eb0acb90cf62ee11b3a606788b96febed9ae9 (diff) |
DB/Misc: Disable movement flag updates for Onyxia and let script handle them
Ref https://github.com/TrinityCore/TrinityCore/pull/24875#issuecomment-692626339 https://github.com/TrinityCore/TrinityCore/pull/25460
(cherry picked from commit 603844f67bcdd594ec4613ed10b674856b194159)
-rw-r--r-- | sql/updates/world/master/2022_02_26_03_world_2020_09_18_00_world.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_02_26_03_world_2020_09_18_00_world.sql b/sql/updates/world/master/2022_02_26_03_world_2020_09_18_00_world.sql new file mode 100644 index 00000000000..d6282caeeae --- /dev/null +++ b/sql/updates/world/master/2022_02_26_03_world_2020_09_18_00_world.sql @@ -0,0 +1,3 @@ +-- Disable movement flag updates for Onyxia and let script handle them +UPDATE `creature_template` SET `flags_extra` = `flags_extra`| 0x200 WHERE `entry` IN (10184, 36538); +UPDATE `creature_template_movement` SET `Flight`= 0 WHERE `CreatureId` IN (10184, 36538); |