mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-25 16:33:20 +08:00
fix friends results sorting
This commit is contained in:
parent
be4de98e7c
commit
bb39357a70
@ -928,7 +928,8 @@ class CoopScoreScreen(ba.Activity):
|
||||
results.remove(score)
|
||||
break
|
||||
results.append(our_score_entry)
|
||||
results.sort(reverse=self._score_order == 'increasing')
|
||||
results.sort(reverse=self._score_order == 'increasing',
|
||||
key=lambda x: x[0])
|
||||
|
||||
# If we're not submitting our own score, we still want to change the
|
||||
# name of our own score to 'Me'.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user