aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfaq <faq@users.noreply.github.com>2020-09-18 17:24:02 +0300
committeroffl <offl@users.noreply.github.com>2020-09-18 17:24:02 +0300
commit603844f67bcdd594ec4613ed10b674856b194159 (patch)
tree476462d08d69f3a5e6ba0bc3fdde1ccf0166f2ca
parent54b9bb75e47df4491d13b89c28f93dbe3b005dec (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
-rw-r--r--sql/updates/world/3.3.5/2020_09_18_00_world.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2020_09_18_00_world.sql b/sql/updates/world/3.3.5/2020_09_18_00_world.sql
new file mode 100644
index 00000000000..d6282caeeae
--- /dev/null
+++ b/sql/updates/world/3.3.5/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);