From 2d16ecf6de9e1bd49da2eb7b1850e418b71ec7d2 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Fri, 30 Aug 2024 02:06:56 +0000 Subject: [PATCH] change: increased delay to 3k on leaveunkeptservers --- .../Modules/Administration/DangerousCommands/CleanupCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Administration/DangerousCommands/CleanupCommands.cs b/src/NadekoBot/Modules/Administration/DangerousCommands/CleanupCommands.cs index b32ef47ec..f82cadb79 100644 --- a/src/NadekoBot/Modules/Administration/DangerousCommands/CleanupCommands.cs +++ b/src/NadekoBot/Modules/Administration/DangerousCommands/CleanupCommands.cs @@ -65,7 +65,7 @@ public partial class Administration for (var shardId = startShardId; shardId < _creds.GetCreds().TotalShards; shardId++) { await _svc.StartLeavingUnkeptServers(shardId); - await Task.Delay(2500 * 1000); + await Task.Delay(3000 * 1000); } await ctx.OkAsync();