mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 08:44:01 +00:00
Chat messages are shown on the server log
This commit is contained in:
parent
5e9e2b2a7d
commit
77da9d3a7c
@ -77,7 +77,7 @@ class ChatAPI{
|
||||
if($target !== "Console"){
|
||||
$this->sendTo(false, "[".$sender." -> me] ".$mes, $target);
|
||||
}
|
||||
console("[".$sender." -> ".$target."] ".$mes);
|
||||
console("[INFO] [".$sender." -> ".$target."] ".$mes);
|
||||
break;
|
||||
}
|
||||
return $output;
|
||||
@ -85,7 +85,6 @@ class ChatAPI{
|
||||
|
||||
public function broadcast($message){
|
||||
$this->send(false, $message);
|
||||
console($message);
|
||||
}
|
||||
|
||||
public function sendTo($owner, $text, $player){
|
||||
@ -102,6 +101,9 @@ class ChatAPI{
|
||||
}
|
||||
}
|
||||
$message .= $text;
|
||||
if($whitelist === false and $blacklist === false){
|
||||
console("[INFO] ".$message);
|
||||
}
|
||||
$this->server->handle("server.chat", new Container($message, $whitelist, $blacklist));
|
||||
}
|
||||
}
|
@ -274,7 +274,6 @@ class PlayerAPI{
|
||||
public function add($CID){
|
||||
if(isset($this->server->clients[$CID])){
|
||||
$player = $this->server->clients[$CID];
|
||||
console("[INFO] Player \x1b[33m".$player->username."\x1b[0m connected from \x1b[36m".$player->ip.":".$player->port."\x1b[0m");
|
||||
$player->data = $this->getOffline($player->username);
|
||||
$player->gamemode = $player->data->get("gamemode");
|
||||
$this->server->query("INSERT OR REPLACE INTO players (clientID, ip, port, name) VALUES (".$player->clientID.", '".$player->ip."', ".$player->port.", '".strtolower($player->username)."');");
|
||||
|
Loading…
x
Reference in New Issue
Block a user