IIDX: Fixed where MISS COUNT has 0 as default

This commit is contained in:
duel0213 2024-10-14 22:14:42 +09:00
parent 844dd6c4d1
commit 1f05cef58b
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -479,7 +479,7 @@ export const musicreg: EPR = async (info, data, send) => {
// SPB -> DPL [0~9] -> Heroic Verse //
let pgArray = Array<number>(10).fill(0); // PGREAT //
let gArray = Array<number>(10).fill(0); // GREAT //
let mArray = Array<number>(10).fill(0); // MISS //
let mArray = Array<number>(10).fill(-1); // MISS //
let cArray = Array<number>(10).fill(0); // CLEAR FLAGS //
let rArray = Array<number>(10).fill(-1); // RANK ID //
let esArray = Array<number>(10).fill(0); // EXSCORE //