Added the caseusername preference on offline player data

This commit is contained in:
Shoghi Cervantes Pueyo 2013-03-23 18:21:40 +01:00
parent d613fa2138
commit ae731c9093
2 changed files with 2 additions and 0 deletions

View File

@ -287,6 +287,7 @@ class PlayerAPI{
public function getOffline($name){
$iname = strtolower($name);
$default = array(
"caseusername" => $name,
"position" => array(
"x" => $this->server->spawn["x"],
"y" => $this->server->spawn["y"],

View File

@ -671,6 +671,7 @@ class Player{
if(!$this->data->exists("inventory") or $this->gamemode === CREATIVE){
$this->data->set("inventory", $this->inventory);
}
$this->data->set("caseusername", $this->username);
$this->inventory = $this->data->get("inventory");
$this->armor = $this->data->get("armor");