X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FConsole%2FKernel.php;h=bbb747d3d614fbdc9e52828f021fd87247466ce5;hb=4caeac216c5e5a044d81b63a8aa5b66451162271;hp=904bfd19db2522e245aeab8bfa5c6799a38bbb69;hpb=c426e270c4da363fd5547cad6ff185d2e7c94e43;p=alttp.git diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 904bfd1..bbb747d 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -15,9 +15,13 @@ class Kernel extends ConsoleKernel */ protected function schedule(Schedule $schedule) { - $schedule->command('sync:avatars')->everyFiveMinutes(); + $schedule->command('twitch:channel-info')->everyFiveMinutes(); + $schedule->command('sync:ladder')->daily(); $schedule->command('sync:speedgaming')->everyFiveMinutes(); $schedule->command('sync:sra')->everyFifteenMinutes(); + $schedule->command('sync:avatars')->everyFiveMinutes(); + $schedule->command('sync:racetime')->everyFiveMinutes(); + $schedule->command('chat:evaluate 100')->everyMinute(); } /**