From 79c2dfec2dd76e47b95e9220c2e68f9024041cae Mon Sep 17 00:00:00 2001 From: Kwoth Date: Thu, 29 Aug 2024 08:33:02 +0000 Subject: [PATCH] Fix: fixed .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 f3f1f66ba..4580763ce 100644 --- a/src/NadekoBot/Modules/Administration/DangerousCommands/CleanupCommands.cs +++ b/src/NadekoBot/Modules/Administration/DangerousCommands/CleanupCommands.cs @@ -64,7 +64,7 @@ public partial class Administration for (var i = startShardId; i < _creds.GetCreds().TotalShards; i++) { - await _svc.LeaveUnkeptServers(startShardId); + await _svc.LeaveUnkeptServers(i); await Task.Delay(2250 * 1000); }