mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-24 20:04:28 +00:00
Fixed /invisible not working
This commit is contained in:
parent
f7af97c651
commit
b9498275a4
@ -71,13 +71,13 @@ class ConsoleAPI{
|
|||||||
case "true":
|
case "true":
|
||||||
case "1":
|
case "1":
|
||||||
$output .= "Server is invisible\n";
|
$output .= "Server is invisible\n";
|
||||||
$this->server->api->setProperty("invisible", true);
|
$this->server->api->setProperty("server-invisible", true);
|
||||||
break;
|
break;
|
||||||
case "off":
|
case "off":
|
||||||
case "false":
|
case "false":
|
||||||
case "0":
|
case "0":
|
||||||
$output .= "Server is visible\n";
|
$output .= "Server is visible\n";
|
||||||
$this->server->api->setProperty("invisible", false);
|
$this->server->api->setProperty("server-invisible", false);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
$output .= "Usage: /invisible <on | off>\n";
|
$output .= "Usage: /invisible <on | off>\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user