Disallow sending empty chat messages

This commit is contained in:
Shoghi Cervantes 2013-06-03 23:33:52 +02:00
parent 45267ea074
commit e43b4e67c6

View File

@ -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){