aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorMeji <alvaro.megias@outlook.com>2024-03-28 00:34:43 +0100
committerfunjoker <funjoker109@gmail.com>2024-03-28 20:37:42 +0100
commitaefa15ece72bccdeb47cbdbdc75df87837c9da00 (patch)
tree2f3c7c771379c1ce8b18c7cd675c29ad72a20dd1 /sql
parentb8b2714c25e6bee1617fdb04b6633b51a7f69e95 (diff)
DB/Creatures: Drop unused movement data
(cherry picked from commit 78635f640ee3b632a487a50dcf492ae62c2a0933)
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/cata_classic/2024_03_28_02_world_2024_03_28_00_world.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/cata_classic/2024_03_28_02_world_2024_03_28_00_world.sql b/sql/updates/world/cata_classic/2024_03_28_02_world_2024_03_28_00_world.sql
new file mode 100644
index 00000000000..d602488bff3
--- /dev/null
+++ b/sql/updates/world/cata_classic/2024_03_28_02_world_2024_03_28_00_world.sql
@@ -0,0 +1,4 @@
+UPDATE `creature_template_movement` SET `InteractionPauseTimer`=NULL WHERE `InteractionPauseTimer`=0;
+UPDATE `creature_template_movement` SET `Chase`=0 WHERE `Chase` IS NULL;
+UPDATE `creature_template_movement` SET `Random`=0 WHERE `Random` IS NULL;
+DELETE FROM `creature_template_movement` WHERE `HoverInitiallyEnabled` IS NULL AND `Chase`=0 AND `Random`=0 AND `InteractionPauseTimer` IS NULL;