From 3a73379fb923376f07b992e5c30e97d43f786b7f Mon Sep 17 00:00:00 2001 From: duel0213 Date: Sat, 19 Oct 2024 23:08:29 +0900 Subject: [PATCH] IIDX: Fixed miss count issue --- iidx@asphyxia/README.md | 1 + iidx@asphyxia/handlers/music.ts | 2 ++ 2 files changed, 3 insertions(+) diff --git a/iidx@asphyxia/README.md b/iidx@asphyxia/README.md index 9bc131e..cf18f0a 100644 --- a/iidx@asphyxia/README.md +++ b/iidx@asphyxia/README.md @@ -155,4 +155,5 @@ Changelogs - Fixed where Disable Music Preview, Disable HCN Color, VEFX Lock settings doesn't reflect - Fixed where MISS COUNT has 0 as default (including score import) - Fixed where unable to import DP scores + - Fixed where MISS COUNT doesn't get updated when exscore is same - WebUI is now display values of corresponding version diff --git a/iidx@asphyxia/handlers/music.ts b/iidx@asphyxia/handlers/music.ts index 5a01ab5..1039fae 100644 --- a/iidx@asphyxia/handlers/music.ts +++ b/iidx@asphyxia/handlers/music.ts @@ -538,6 +538,8 @@ export const musicreg: EPR = async (info, data, send) => { opt2Array[clid] = option_2; update = 1; } else { + if (exscore == pExscore && mnum < mArray[clid]) mArray[clid] = mnum; + ghost = music_data[clid]; if (version >= 27) ghost_gauge = music_data[clid + 10]; }