mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-21 00:07:30 +00:00
Fixed player count bug
This commit is contained in:
parent
fd5d981aa5
commit
4755dee47d
@ -1034,7 +1034,7 @@ class Player{
|
||||
if($this->loggedIn === true){
|
||||
break;
|
||||
}
|
||||
if(count($this->server->clients) >= $this->server->maxClients){
|
||||
if(count($this->server->clients) > $this->server->maxClients){
|
||||
$this->close("server is full!", false);
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user