improved player data ram storage read & write
This commit is contained in:
parent
8d7f6bc62b
commit
20f769c496
@ -209,12 +209,10 @@ class PlayerDataManager {
|
||||
|
||||
$meta = $this->metaData[$className . $dataName];
|
||||
|
||||
//Check if data is already in the ram
|
||||
if (isset($this->storedData[$player->index])) {
|
||||
if (isset($this->storedData[$player->index][$meta->dataId])) {
|
||||
// Check if data is already in the ram
|
||||
if (isset($this->storedData[$player->index]) && isset($this->storedData[$player->index][$meta->dataId])) {
|
||||
return $this->storedData[$player->index][$meta->dataId];
|
||||
}
|
||||
}
|
||||
|
||||
$mysqli = $this->maniaControl->database->mysqli;
|
||||
$dataQuery = "SELECT `value` FROM `" . self::TABLE_PLAYERDATA . "`
|
||||
@ -296,10 +294,11 @@ class PlayerDataManager {
|
||||
}
|
||||
$statement->close();
|
||||
|
||||
//FIXME store changed value
|
||||
if (isset($this->storedData[$player->index]) && isset($this->storedData[$player->index][$dataId])) {
|
||||
unset($this->storedData[$player->index][$dataId]);
|
||||
// Store changed value
|
||||
if (!isset($this->storedData[$player->index])) {
|
||||
$this->storedData[$player->index] = array();
|
||||
}
|
||||
$this->storedData[$player->index][$dataId] = $value;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user