mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 08:44:01 +00:00
Automatically remove ANSI codes from chat
This commit is contained in:
parent
e2d4b49266
commit
b83ef4e70b
@ -153,7 +153,6 @@ class Player{
|
||||
$this->close("timeout");
|
||||
}else{
|
||||
if(!empty($this->queue)){
|
||||
$cnt = 0;
|
||||
$maxtime = $time + 0.0025;
|
||||
while(microtime(true) < $maxtime){
|
||||
$p = array_shift($this->queue);
|
||||
@ -168,7 +167,6 @@ class Player{
|
||||
eval($p[1]);
|
||||
break;
|
||||
}
|
||||
++$cnt;
|
||||
}
|
||||
}
|
||||
|
||||
@ -416,7 +414,7 @@ class Player{
|
||||
}else{
|
||||
$message = (string) $data;
|
||||
}
|
||||
$this->sendChat($message);
|
||||
$this->sendChat(preg_replace('/\x1b\[[0-9;]*m/', "", $message)); //Remove ANSI codes from chat
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user