change: updated gambling.yml to the newest version

dev: fixed pubsub not supporting tuples
This commit is contained in:
Kwoth
2024-08-28 05:04:52 +00:00
parent c033c0e3c8
commit bc22987330
4 changed files with 8 additions and 4 deletions

View File

@@ -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();

View File

@@ -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;