From e4cc1ca7fde33cf290ce713e0498639c4c758a98 Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Thu, 31 Aug 2023 12:17:21 +0200 Subject: [PATCH] Sort ServerList by players --- src/Components/Modules/ServerList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Components/Modules/ServerList.cpp b/src/Components/Modules/ServerList.cpp index 66fb86d1..fd496edb 100644 --- a/src/Components/Modules/ServerList.cpp +++ b/src/Components/Modules/ServerList.cpp @@ -17,8 +17,8 @@ namespace Components { - bool ServerList::SortAsc = true; - int ServerList::SortKey = static_cast>(Column::Ping); + bool ServerList::SortAsc = false; + int ServerList::SortKey = static_cast>(Column::Players); unsigned int ServerList::CurrentServer = 0; ServerList::Container ServerList::RefreshContainer;