mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-10-19 15:36:08 +00:00
Limited length of messages to 100
This commit is contained in:
@@ -1304,7 +1304,7 @@ class Player{
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
$message = $data["message"];
|
$message = $data["message"];
|
||||||
if(trim($data["message"]) != "" and preg_match('#[^\\x20-\\xff]#', $message) == 0){
|
if(trim($data["message"]) != "" and strlen($data["message"]) <= 100 and preg_match('#[^\\x20-\\xff]#', $message) == 0){
|
||||||
if($message{0} === "/"){ //Command
|
if($message{0} === "/"){ //Command
|
||||||
$this->server->api->console->run(substr($message, 1), $this);
|
$this->server->api->console->run(substr($message, 1), $this);
|
||||||
}else{
|
}else{
|
||||||
|
Reference in New Issue
Block a user