From b017c5e8052bcb96dc35293ae78b17ff993724d2 Mon Sep 17 00:00:00 2001 From: Toastie Date: Fri, 30 Aug 2024 18:57:46 +1200 Subject: [PATCH] increased delay to 3k on leaveunkeptservers Last commit want meant to have the delay at 2500 but I forgot --- .../Modules/Administration/DangerousCommands/CleanupCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EllieBot/Modules/Administration/DangerousCommands/CleanupCommands.cs b/src/EllieBot/Modules/Administration/DangerousCommands/CleanupCommands.cs index ada76bd..e6ba515 100644 --- a/src/EllieBot/Modules/Administration/DangerousCommands/CleanupCommands.cs +++ b/src/EllieBot/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(2250 * 1000); + await Task.Delay(3000 * 1000); } await ctx.OkAsync();