mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-04-19 06:00:18 +00:00
fix(eternal): fix Andreal score timestamp
This commit is contained in:
parent
d763896c0c
commit
6258a55ba4
@ -3,7 +3,7 @@ class AndrealImageGeneratorAccount:
|
|||||||
self,
|
self,
|
||||||
name: str = "Player",
|
name: str = "Player",
|
||||||
code: int = 123456789,
|
code: int = 123456789,
|
||||||
rating: int = 750,
|
rating: int = -1,
|
||||||
character: int = 5,
|
character: int = 5,
|
||||||
character_uncapped: bool = False,
|
character_uncapped: bool = False,
|
||||||
):
|
):
|
||||||
|
@ -35,7 +35,7 @@ class AndrealImageGeneratorApiDataConverter:
|
|||||||
"difficulty": score.rating_class,
|
"difficulty": score.rating_class,
|
||||||
"clear_type": score.clear_type or 1,
|
"clear_type": score.clear_type or 1,
|
||||||
"best_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,
|
"near_count": score.far,
|
||||||
"miss_count": score.lost,
|
"miss_count": score.lost,
|
||||||
"perfect_count": score.pure,
|
"perfect_count": score.pure,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user