mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-02-05 23:13:46 +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)
|
results.remove(score)
|
||||||
break
|
break
|
||||||
results.append(our_score_entry)
|
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
|
# If we're not submitting our own score, we still want to change the
|
||||||
# name of our own score to 'Me'.
|
# name of our own score to 'Me'.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user