mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-23 00:55:57 +00:00
Limited length of messages to 100
This commit is contained in:
parent
1935e2bbf7
commit
f80326b714
@ -1304,7 +1304,7 @@ class Player{
|
||||
break;
|
||||
}
|
||||
$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
|
||||
$this->server->api->console->run(substr($message, 1), $this);
|
||||
}else{
|
||||
|
Loading…
x
Reference in New Issue
Block a user