pocketmine\Server::isWhitelisted PHP Méthode

isWhitelisted() public méthode

public isWhitelisted ( string $name ) : boolean
$name string
Résultat boolean
    public function isWhitelisted($name)
    {
        return !$this->hasWhitelist() or $this->operators->exists($name, true) or $this->whitelist->exists($name, true);
    }
Server