mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-05 17:41:46 +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){
|
if($this->loggedIn === true){
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if(count($this->server->clients) >= $this->server->maxClients){
|
if(count($this->server->clients) > $this->server->maxClients){
|
||||||
$this->close("server is full!", false);
|
$this->close("server is full!", false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user