From 78635f640ee3b632a487a50dcf492ae62c2a0933 Mon Sep 17 00:00:00 2001 From: Meji Date: Thu, 28 Mar 2024 00:34:43 +0100 Subject: [PATCH] DB/Creatures: Drop unused movement data --- sql/updates/world/master/2024_03_28_00_world.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 sql/updates/world/master/2024_03_28_00_world.sql diff --git a/sql/updates/world/master/2024_03_28_00_world.sql b/sql/updates/world/master/2024_03_28_00_world.sql new file mode 100644 index 0000000000000..d602488bff3d1 --- /dev/null +++ b/sql/updates/world/master/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;