mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-10 05:34:54 +00:00
Disallow sending empty chat messages
This commit is contained in:
parent
45267ea074
commit
e43b4e67c6
@ -1304,6 +1304,7 @@ class Player{
|
||||
break;
|
||||
}
|
||||
$message = $data["message"];
|
||||
if(trim($data["message"]) != ""){
|
||||
if($message{0} === "/"){ //Command
|
||||
$this->server->api->console->run(substr($message, 1), $this);
|
||||
}else{
|
||||
@ -1311,6 +1312,7 @@ class Player{
|
||||
$this->server->api->chat->send($this, $message);
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
case MC_CONTAINER_CLOSE:
|
||||
if($this->spawned === false){
|
||||
|
Loading…
x
Reference in New Issue
Block a user