优化:巡乐会结束时间限制调整

This commit is contained in:
2026-01-13 08:53:52 +08:00
parent 1903774cdf
commit c2b49aad9f

View File

@@ -1383,9 +1383,9 @@ class BlindBoxTurntableGiftDrawWorldNew extends Model
$add_end_time = ($ext['locking_time']['tow_no_locking_time'] - $ext['locking_time']['next_time']) * 60;
}
if ($add_end_time <= 20) {
Cache::set($cache_key, 20, 20);
return 20;
if ($add_end_time <= 30) {
Cache::set($cache_key, 10, 10);
return 10;
}
return $add_end_time;