Merge branch 'master' of https://github.com/Anuken/Mindustry into v103.3

This commit is contained in:
Petr Gašparík
2020-02-11 17:20:40 +01:00
2 changed files with 4 additions and 4 deletions

View File

@@ -131,7 +131,7 @@ public class NetServer implements ApplicationListener{
return;
}
if(admins.getPlayerLimit() > 0 && playerGroup.size() >= admins.getPlayerLimit()){
if(admins.getPlayerLimit() > 0 && playerGroup.size() >= admins.getPlayerLimit() && !netServer.admins.isAdmin(uuid, packet.usid)){
con.kick(KickReason.playerLimit);
return;
}