Skip to content

Commit

Permalink
feat(voice): disable rearrange_voice_channels at startup
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
joeyaurel committed Dec 28, 2023
1 parent 82e7957 commit 0d8d02f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()


Expand Down

0 comments on commit 0d8d02f

Please sign in to comment.