From 1f05cef58bb179ec6e49b6f557a0ff9954b678aa Mon Sep 17 00:00:00 2001 From: duel0213 Date: Mon, 14 Oct 2024 22:14:42 +0900 Subject: [PATCH] IIDX: Fixed where MISS COUNT has 0 as default --- iidx@asphyxia/README.md | 1 + iidx@asphyxia/handlers/music.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/iidx@asphyxia/README.md b/iidx@asphyxia/README.md index 94b850f..9a5f55d 100644 --- a/iidx@asphyxia/README.md +++ b/iidx@asphyxia/README.md @@ -153,4 +153,5 @@ Changelogs - Added music\_open on gameSystem.systemInfo response - Fixed where lightning settings doesn't get saved on logout - Fixed where Disable Music Preview, Disable HCN Color, VEFX Lock settings doesn't reflect + - Fixed where MISS COUNT has 0 as default - WebUI is now display values of corresponding version diff --git a/iidx@asphyxia/handlers/music.ts b/iidx@asphyxia/handlers/music.ts index 3515c56..5a01ab5 100644 --- a/iidx@asphyxia/handlers/music.ts +++ b/iidx@asphyxia/handlers/music.ts @@ -479,7 +479,7 @@ export const musicreg: EPR = async (info, data, send) => { // SPB -> DPL [0~9] -> Heroic Verse // let pgArray = Array(10).fill(0); // PGREAT // let gArray = Array(10).fill(0); // GREAT // - let mArray = Array(10).fill(0); // MISS // + let mArray = Array(10).fill(-1); // MISS // let cArray = Array(10).fill(0); // CLEAR FLAGS // let rArray = Array(10).fill(-1); // RANK ID // let esArray = Array(10).fill(0); // EXSCORE //