mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-04-04 16:25:14 -05:00
IIDX: Fixed where MISS COUNT has 0 as default
This commit is contained in:
parent
844dd6c4d1
commit
1f05cef58b
|
|
@ -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 //
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user