Servers with more than 40 max slots always send to largest server.

Fixed space in Solo lore.
This commit is contained in:
Jonathan Williams 2015-08-03 02:07:23 -05:00
parent 6a1e5d6bfc
commit adcd91bf61
2 changed files with 2 additions and 2 deletions

View File

@ -598,7 +598,7 @@ public class ServerManager extends MiniPlugin
{
ServerInfo largestServer = servers.get(0);
if (largestServer.getAvailableSlots() >= MIN_SLOTS_REQUIRED)
if (largestServer.getAvailableSlots() >= MIN_SLOTS_REQUIRED || largestServer.MaxPlayers > 40)
{
return largestServer;
}