Reordered instructions

This commit is contained in:
Shoghi Cervantes 2013-07-21 23:36:14 +02:00
parent 3606c392f2
commit 47c934cee2

View File

@ -266,6 +266,8 @@ class Player{
$this->directDataPacket(MC_DISCONNECT);
$this->connected = false;
$this->level->freeAllChunks($this);
$this->spawned = false;
$this->loggedIn = false;
$this->buffer = null;
unset($this->buffer);
$this->recoveryQueue = array();
@ -276,8 +278,6 @@ class Player{
$this->server->api->chat->broadcast($this->username." left the game");
}
console("[INFO] \x1b[33m".$this->username."\x1b[0m[/".$this->ip.":".$this->port."] logged out due to ".$reason);
$this->spawned = false;
$this->loggedIn = false;
$this->server->api->player->remove($this->CID);
}
}