From: Daniel Karbach Date: Fri, 1 May 2026 15:33:58 +0000 (+0200) Subject: fix row count in xdhunt sync X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=867c5f637f3f1ec603e0e288386e01812949cc3d;p=alttp.git fix row count in xdhunt sync --- diff --git a/app/Console/Commands/SyncXDHunt.php b/app/Console/Commands/SyncXDHunt.php index 916e972..0a26a42 100644 --- a/app/Console/Commands/SyncXDHunt.php +++ b/app/Console/Commands/SyncXDHunt.php @@ -72,7 +72,7 @@ class SyncXDHunt extends Command { } private function syncEvent(Event $event, $schedule): void { - for ($i = 3; $i < count($schedule); ++$i) { + for ($i = 2; $i < count($schedule); ++$i) { $this->syncSchedule($event, $schedule[$i]); } }