mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-04-09 17:40:17 +00:00
fix(eternal): fix Andreal score timestamp
This commit is contained in:
parent
d763896c0c
commit
6258a55ba4
@ -3,7 +3,7 @@ class AndrealImageGeneratorAccount:
|
||||
self,
|
||||
name: str = "Player",
|
||||
code: int = 123456789,
|
||||
rating: int = 750,
|
||||
rating: int = -1,
|
||||
character: int = 5,
|
||||
character_uncapped: bool = False,
|
||||
):
|
||||
|
@ -35,7 +35,7 @@ class AndrealImageGeneratorApiDataConverter:
|
||||
"difficulty": score.rating_class,
|
||||
"clear_type": score.clear_type or 1,
|
||||
"best_clear_type": score.clear_type or 1,
|
||||
"time_played": score.date or 0,
|
||||
"time_played": score.date * 1000 if score.date else 0,
|
||||
"near_count": score.far,
|
||||
"miss_count": score.lost,
|
||||
"perfect_count": score.pure,
|
||||
|
Loading…
x
Reference in New Issue
Block a user