From b29b2af2f708d29023826a2d8f5f848119e11aa2 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Wed, 28 Apr 2021 14:20:51 +0900 Subject: [PATCH] Sort by PP by default --- youmubot-osu/src/discord/server_rank.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youmubot-osu/src/discord/server_rank.rs b/youmubot-osu/src/discord/server_rank.rs index c4a6532..e5a2066 100644 --- a/youmubot-osu/src/discord/server_rank.rs +++ b/youmubot-osu/src/discord/server_rank.rs @@ -154,7 +154,7 @@ enum OrderBy { impl Default for OrderBy { fn default() -> Self { - Self::Score + Self::PP } }