mirror of
https://github.com/drmext/MonkeyBusiness.git
synced 2024-11-13 18:20:50 +01:00
Fix character load
This commit is contained in:
parent
613ea0da78
commit
99609e6f53
@ -603,7 +603,7 @@ async def playerdata_usergamedata_recv(request: Request):
|
||||
|
||||
common = profile["common"].split(",")
|
||||
common[5] = calories_disp.index(profile["calories_disp"])
|
||||
common[6] = character.index(profile["character"])
|
||||
common[6] = f'{character.index(profile["character"]):x}'
|
||||
common[9] = 1 # Mobile link
|
||||
common_load = ",".join([str(i) for i in common])
|
||||
|
||||
|
@ -640,7 +640,7 @@ async def playerdata_2_usergamedata_recv(request: Request):
|
||||
|
||||
common = profile["common"].split(",")
|
||||
common[5] = calories_disp.index(profile["calories_disp"])
|
||||
common[6] = character.index(profile["character"])
|
||||
common[6] = f'{character.index(profile["character"]):x}'
|
||||
common[9] = 1 # Mobile link
|
||||
common_load = ",".join([str(i) for i in common])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user