This commit is contained in:
Michael Yoo 2014-01-04 11:59:07 +09:00
parent 1ce7366cc3
commit 969f0f05b0
2 changed files with 4 additions and 1 deletions

View File

@ -402,7 +402,7 @@ class PlayerAPI{
public function spawnToAllPlayers(Player $player){
foreach($this->getAll() as $p){
if($p !== $player and ($p->entity instanceof Entity)){
if($p !== $player and ($p->entity instanceof Entity) and ($player->entity instanceof Entity)){
$player->entity->spawn($p);
if($p->level !== $player->level){
$p->dataPacket(MC_MOVE_ENTITY_POSROT, array(

View File

@ -44,6 +44,7 @@ class Player{
private $startAction = false;
private $isSleeping = false;
public $data;
/** @var \Entity */
public $entity = false;
public $auth = false;
public $CID;
@ -78,6 +79,8 @@ class Player{
private $chunkCount = array();
private $received = array();
public $realmsData = array();
/** @var \Level */
public $level;
public function __get($name){
if(isset($this->{$name})){