player object cache

This commit is contained in:
Steffen Schröder 2014-05-09 19:47:20 +02:00
parent ce1863318c
commit 6fd7775bcb

View File

@ -40,6 +40,7 @@ class Player {
public $uploadRate = -1;
public $skins = null;
public $daysSinceZoneInscription = -1;
public $cache = array();
//Flags details
public $forcedSpectatorState = 0;
@ -242,4 +243,11 @@ class Player {
$this->autoTarget = (bool)(intval($spectatorStatus / 1000) % 10);
$this->currentTargetId = intval($spectatorStatus / 10000);
}
/**
* Clear the Player's Temporary Data
*/
public function clearCache() {
$this->cache = array();
}
}