mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-09-22 22:27:56 +03:00
IIDX: Fixed where MISS COUNT has 0 as default
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 //
|
||||
|
||||
Reference in New Issue
Block a user