From: Daniel Karbach Date: Sun, 28 Dec 2025 01:09:03 +0000 (+0100) Subject: fix xdhunt estimate X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=2ff379aaa099fc9567a5b3787b0124d2037963a9;p=alttp.git fix xdhunt estimate --- diff --git a/app/Console/Commands/SyncXDHunt.php b/app/Console/Commands/SyncXDHunt.php index 692d2e8..91b707e 100644 --- a/app/Console/Commands/SyncXDHunt.php +++ b/app/Console/Commands/SyncXDHunt.php @@ -101,7 +101,7 @@ class SyncXDHunt extends Command { if (!$episode->start || $start->ne($episode->start)) { $episode->start = $start; } - $episode->estimate = 60 * 60; + $episode->estimate = 2 * 60 * 60; $episode->confirmed = true; $episode->save();