巡乐会开始时间调整,30秒调成20秒

This commit is contained in:
2026-01-12 14:09:05 +08:00
parent a3109f6ab4
commit 64d0812adb

View File

@@ -1397,9 +1397,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 <= 30) {
Cache::set($cache_key, 30, 30);
return 30;
if ($add_end_time <= 20) {
Cache::set($cache_key, 20, 20);
return 20;
}
return $add_end_time;