diff --git a/src/command/Command.php b/src/command/Command.php index 7ae9ae7c1..65d4decea 100644 --- a/src/command/Command.php +++ b/src/command/Command.php @@ -113,7 +113,7 @@ abstract class Command{ public function testPermissionSilent(CommandSender $target, ?string $permission = null) : bool{ $permission ??= $this->permission; if($permission === null || $permission === ""){ - return true; + return false; } foreach(explode(";", $permission) as $p){