Remove dodgy sort

This commit is contained in:
Sam 2018-08-22 00:13:18 +01:00 committed by Alexander Meech
parent 75a19de53c
commit 9d01f6537e
1 changed files with 0 additions and 1 deletions

View File

@ -421,7 +421,6 @@ public class NextBestGameManager implements Listener
{
List<MinecraftServer> servers = Lists.newArrayList(ServerManager.getServerRepository(_region).getServersByGroup(_serverGroup));
List<MinecraftServer> possible = Lists.newArrayList();
servers.sort((a, b) -> b.getPlayerCount() - a.getPlayerCount());
int acceptableCountdown = party == null ? ACCEPTABLE_SOLO_COUNTDOWN : ACCEPTABLE_PARTY_COUNTDOWN;