Chat messages are shown on the server log

This commit is contained in:
Shoghi Cervantes Pueyo 2013-04-14 16:19:16 +02:00
parent 5e9e2b2a7d
commit 77da9d3a7c
2 changed files with 4 additions and 3 deletions

View File

@ -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));
}
}

View File

@ -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)."');");