mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-11 03:37:27 +08:00
[F] Fix kaleidx parsing
This commit is contained in:
@@ -188,7 +188,9 @@ fun Maimai2ServletController.initApis() {
|
|||||||
"GetGameTournamentInfo" static { mapOf("length" to 0, "gameTournamentInfoList" to empty) }
|
"GetGameTournamentInfo" static { mapOf("length" to 0, "gameTournamentInfoList" to empty) }
|
||||||
|
|
||||||
// Kaleidoscope, added on 1.50
|
// Kaleidoscope, added on 1.50
|
||||||
"GetGameKaleidxScope" static { mapOf("gameKaleidxScopeList" to empty) }
|
"GetGameKaleidxScope" static { mapOf("gameKaleidxScopeList" to ls(
|
||||||
|
mapOf("gateId" to 1, "phaseId" to 1),
|
||||||
|
)) }
|
||||||
"GetUserKaleidxScope".unpaged { db.userKaleidx.findByUser_Card_ExtId(uid) }
|
"GetUserKaleidxScope".unpaged { db.userKaleidx.findByUser_Card_ExtId(uid) }
|
||||||
// Added on 1.50
|
// Added on 1.50
|
||||||
"GetUserNewItemList" { mapOf("userId" to uid, "userItemList" to empty) }
|
"GetUserNewItemList" { mapOf("userId" to uid, "userItemList" to empty) }
|
||||||
|
|||||||
@@ -590,10 +590,10 @@ class Mai2UserKaleidx : Mai2UserEntity() {
|
|||||||
var totalDeluxscore = 0
|
var totalDeluxscore = 0
|
||||||
var bestAchievement = 0
|
var bestAchievement = 0
|
||||||
var bestDeluxscore = 0
|
var bestDeluxscore = 0
|
||||||
var bestAchievementDate: LocalDateTime = LocalDateTime.MIN
|
var bestAchievementDate: LocalDateTime? = null
|
||||||
var bestDeluxscoreDate: LocalDateTime = LocalDateTime.MIN
|
var bestDeluxscoreDate: LocalDateTime? = null
|
||||||
var playCount = 0
|
var playCount = 0
|
||||||
var clearDate: LocalDateTime = LocalDateTime.MIN
|
var clearDate: LocalDateTime? = null
|
||||||
var lastPlayDate: LocalDateTime = LocalDateTime.MIN
|
var lastPlayDate: LocalDateTime? = null
|
||||||
var isInfoWatched = false
|
var isInfoWatched = false
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user