diff options
-rw-r--r-- | sql/updates/world/master/2024_03_28_00_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
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 00000000000..d602488bff3 --- /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; |