From 93b9712394a9758002927c5a005fcbe21c7e4eba Mon Sep 17 00:00:00 2001 From: Kaaninchen <124433727+kaaninchen@users.noreply.github.com> Date: Mon, 24 Aug 2026 07:55:06 +0200 Subject: [PATCH] up max_attempt to 30 --- src/dc/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dc/handlers.py b/src/dc/handlers.py index d391daf..2741669 100644 --- a/src/dc/handlers.py +++ b/src/dc/handlers.py @@ -18,7 +18,7 @@ async def rename_vc(bot: discord.Bot, voice_channel, from_scheduler: bool = Fals _scheduled_task.cancel() attempt = 0 - max_attempt = 15 + max_attempt = 30 trip = choose_connection() while trip is None and attempt < max_attempt: attempt += 1