Change order_by for players points

This commit is contained in:
c0de 2024-02-23 15:51:21 -05:00
parent 1f9e58273b
commit 2c1aaf82e0
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class PointsManager(BaseGameManager):
players = Player.select(
Player.player_name, Player.total_points, Player.last_update
).order_by(Player.last_update.desc(), Player.total_points.desc())
).order_by(Player.total_points.desc())
for player in players:
message += (