[F] Fix matching start & end time?

pull/106/head
Azalea 2025-01-07 10:59:03 -05:00
parent f033496d20
commit aad43c9f9c
1 changed files with 4 additions and 2 deletions

View File

@ -238,8 +238,10 @@ fun ChusanController.chusanInit() {
"maxCountCharacter" to 300,
"maxCountItem" to 300,
"maxCountMusic" to 300,
"matchStartTime" to now.minusHours(1).format(fmt),
"matchEndTime" to now.plusHours(7).format(fmt),
// "matchStartTime" to now.minusHours(1).format(fmt),
// "matchEndTime" to now.plusHours(7).format(fmt),
"matchStartTime" to now.withHour(0).withMinute(1).withSecond(0).format(fmt),
"matchEndTime" to now.withHour(23).withMinute(59).withSecond(0).format(fmt),
"matchTimeLimit" to 10,
"matchErrorLimit" to 10,
"matchingUri" to matching.ensureEndingSlash(),