This commit is contained in:
Shoghi Cervantes 2013-11-24 01:52:23 +01:00
parent 6ff6a5fc91
commit 5a71043ab0

View File

@ -79,9 +79,9 @@ class Player{
private $received = array(); private $received = array();
public $realmsData = array(); public $realmsData = array();
public function &__get($name){ public function __get($name){
if(isset($this->{$name})){ if(isset($this->{$name})){
return $this->{$name}; return ($this->{$name});
} }
return null; return null;
} }