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]; }