mirror of https://github.com/hykilpikonna/AquaDX
[F] Fix kaleidx parsing
parent
202df27f88
commit
43582f0528
|
@ -188,7 +188,9 @@ fun Maimai2ServletController.initApis() {
|
|||
"GetGameTournamentInfo" static { mapOf("length" to 0, "gameTournamentInfoList" to empty) }
|
||||
|
||||
// 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) }
|
||||
// Added on 1.50
|
||||
"GetUserNewItemList" { mapOf("userId" to uid, "userItemList" to empty) }
|
||||
|
|
|
@ -590,10 +590,10 @@ class Mai2UserKaleidx : Mai2UserEntity() {
|
|||
var totalDeluxscore = 0
|
||||
var bestAchievement = 0
|
||||
var bestDeluxscore = 0
|
||||
var bestAchievementDate: LocalDateTime = LocalDateTime.MIN
|
||||
var bestDeluxscoreDate: LocalDateTime = LocalDateTime.MIN
|
||||
var bestAchievementDate: LocalDateTime? = null
|
||||
var bestDeluxscoreDate: LocalDateTime? = null
|
||||
var playCount = 0
|
||||
var clearDate: LocalDateTime = LocalDateTime.MIN
|
||||
var lastPlayDate: LocalDateTime = LocalDateTime.MIN
|
||||
var clearDate: LocalDateTime? = null
|
||||
var lastPlayDate: LocalDateTime? = null
|
||||
var isInfoWatched = false
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue