Increase Matchmaking interval to reduce the chance of 1v4 games until new matchmaking is here.

This commit is contained in:
Vari 2024-12-19 23:39:25 +01:00
parent ea0ab25d08
commit e39a17162d

View File

@ -13,8 +13,8 @@ class Kernel extends ConsoleKernel
protected function schedule(Schedule $schedule): void
{
$schedule->command('model:prune')->daily();
$schedule->command('matchmaking:process')->everyFiveSeconds();
$schedule->command('matchmaking:cleanup')->everyFifteenSeconds();
$schedule->command('matchmaking:process')->everyTwentySeconds();
$schedule->command('matchmaking:cleanup')->everyThirtySeconds();
$schedule->command('app:generate-timed-challenges')->daily();
}