mirror of
https://github.com/drmext/MonkeyBusiness.git
synced 2026-04-25 07:28:22 -05:00
Fix
This commit is contained in:
parent
0b07b33085
commit
827c80b26d
|
|
@ -10,7 +10,7 @@ Run [start.bat (Windows)](start.bat) or [start.sh (Linux, MacOS)](start.sh)
|
|||
|
||||
## Playable Games
|
||||
- IIDX 18-20, 29-33 (Online Arena/BPL support)
|
||||
- DDR A20P, A3 (OmniMIX support w/ DAN & pfree score saving hack)
|
||||
- DDR A20P, A3 (OmniMIX/GF, BPL, and [Fake PFREE](https://github.com/drmext/BemaniPatcher/blob/nopr/ddra3.html#L133) support)
|
||||
- GD 6-10 DELTA (Battle Mode support)
|
||||
- DRS
|
||||
- NOST 3
|
||||
|
|
|
|||
|
|
@ -149,8 +149,8 @@ async def playerdata_2_usergamedata_advanced(request: Request):
|
|||
)
|
||||
for event in [
|
||||
e
|
||||
for e in range(1, 100)
|
||||
if e not in [4, 6, 7, 8, 14, 47, 89, 90]
|
||||
for e in range(100, 1, -1)
|
||||
if e not in [4, 6, 7, 8, 14, 47, 90]
|
||||
]
|
||||
],
|
||||
E.grade(
|
||||
|
|
@ -566,9 +566,16 @@ async def playerdata_2_usergamedata_advanced(request: Request):
|
|||
)
|
||||
)
|
||||
|
||||
elif mode == "mergeddataload":
|
||||
response = E.response(
|
||||
E.playerdata_2(
|
||||
E.result(0, __type="s32"),
|
||||
)
|
||||
)
|
||||
|
||||
else:
|
||||
response = E.response(
|
||||
E.playerdata(
|
||||
E.playerdata_2(
|
||||
E.result(1, __type="s32"),
|
||||
)
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user