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

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