diff --git a/nonebot_plugin_tetris_stats/games/tetrio/record/blitz.py b/nonebot_plugin_tetris_stats/games/tetrio/record/blitz.py index 2b0e1ce..f6a97c1 100644 --- a/nonebot_plugin_tetris_stats/games/tetrio/record/blitz.py +++ b/nonebot_plugin_tetris_stats/games/tetrio/record/blitz.py @@ -91,7 +91,7 @@ async def make_blitz_image(player: Player) -> bytes: lpm=metrics.lpm, holds=endcontext.holds, score=endcontext.score, - spp=round(endcontext.score / metrics._pps, 2), # noqa: SLF001 获取最高精度 + spp=round(endcontext.score / endcontext.piecesplaced, 2), single=clears.singles, double=clears.doubles, triple=clears.triples,