[-] Remove unnecessary assignment

matching
Azalea 2024-12-27 23:34:52 -05:00
parent 537558e3d5
commit daa8de203b
1 changed files with 1 additions and 2 deletions

View File

@ -96,7 +96,6 @@ val chusanInit: ChusanController.() -> Unit = {
"GetUserItem".pagedWithKind("userItemList") {
val rawIndex = data["nextIndex"]!!.long
val kind = parsing { (rawIndex / 10000000000L).int }
data["kind"] = kind
data["nextIndex"] = rawIndex % 10000000000L
mapOf("itemKind" to kind) to {
// TODO: All unlock
@ -195,7 +194,7 @@ val chusanInit: ChusanController.() -> Unit = {
mapOf(
"gameSetting" to mapOf(
"romVersion" to "$version.00", // Chusan checks these two versions to determine if it can enable game modes
"romVersion" to "$version.00",
"dataVersion" to versionHelper[data["clientId"].toString()],
"isMaintenance" to false,
"requestInterval" to 0,