diff --git a/nonebot_plugin_tetris_stats/games/tetrio/record/blitz.py b/nonebot_plugin_tetris_stats/games/tetrio/record/blitz.py index b1966dc..1ab56fb 100644 --- a/nonebot_plugin_tetris_stats/games/tetrio/record/blitz.py +++ b/nonebot_plugin_tetris_stats/games/tetrio/record/blitz.py @@ -90,7 +90,7 @@ async def make_blitz_image(player: Player) -> bytes: page=await render( 'v2/tetrio/record/blitz', Record( - type='personal_best', + type='best', user=User( id=user.ID, name=user.name.upper(), diff --git a/nonebot_plugin_tetris_stats/games/tetrio/record/sprint.py b/nonebot_plugin_tetris_stats/games/tetrio/record/sprint.py index de05e5b..5f316ba 100644 --- a/nonebot_plugin_tetris_stats/games/tetrio/record/sprint.py +++ b/nonebot_plugin_tetris_stats/games/tetrio/record/sprint.py @@ -91,7 +91,7 @@ async def make_sprint_image(player: Player) -> bytes: page=await render( 'v2/tetrio/record/40l', Record( - type='personal_best', + type='best', user=User( id=user.ID, name=user.name.upper(),