From 0d8d02f484dc60b991928ba3ed3b4985a90878ac Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 28 Dec 2023 23:14:04 +0100 Subject: [PATCH] feat(voice): disable rearrange_voice_channels at startup The rearrange_voice_channels was commented out in the startup sequence. It improves the startup performance and efficiency by reducing the number of tasks running at startup to only essential tasks. --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 4ffca43..6e6fa20 100644 --- a/main.py +++ b/main.py @@ -73,7 +73,7 @@ async def on_ready(): print(f'Logged in as {client.user} (ID: {client.user.id})') print('------') check_voice_channels.start() - rearrange_voice_channels.start() + # rearrange_voice_channels.start() check_no_roles_assigned.start()