mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
change: updated gambling.yml to the newest version
dev: fixed pubsub not supporting tuples
This commit is contained in:
@@ -42,7 +42,7 @@ public partial class Administration
|
||||
|
||||
[Cmd]
|
||||
[OwnerOnly]
|
||||
public async Task LeaveUnkeptServers(int shardId = 0, int delay = 1000)
|
||||
public async Task LeaveUnkeptServers(int shardId, int delay = 1000)
|
||||
{
|
||||
var keptGuildCount = await _svc.GetKeptGuildCount();
|
||||
|
||||
|
@@ -45,7 +45,7 @@ public sealed class CleanupService : ICleanupService, IReadyExecutor, INService
|
||||
|
||||
private bool keepTriggered = false;
|
||||
|
||||
private async ValueTask InternalTriggerKeep((int shardId, int delay) data)
|
||||
private async ValueTask InternalTriggerKeep((int, int) data)
|
||||
{
|
||||
var (shardId, delay) = data;
|
||||
|
||||
|
Reference in New Issue
Block a user