Introduced pocketmine.group.console

this is only used for /dumpmemory right now, but it's planned to be used for more stuff.
This commit is contained in:
Dylan K. Taylor
2020-12-02 13:35:48 +00:00
parent c5e12bb11f
commit b51c6e89b3
2 changed files with 5 additions and 3 deletions

View File

@@ -45,7 +45,7 @@ class ConsoleCommandSender implements CommandSender{
public function __construct(Server $server, Language $language){
$this->server = $server;
$this->perm = new PermissibleBase([DefaultPermissions::ROOT_OPERATOR => true]);
$this->perm = new PermissibleBase([DefaultPermissions::ROOT_CONSOLE => true]);
$this->language = $language;
}