Updated for MCPE 0.9.0 build 7

This commit is contained in:
Shoghi Cervantes
2014-06-23 21:50:07 +02:00
parent 38a958ed08
commit 22533458ed
4 changed files with 16 additions and 14 deletions

View File

@ -27,6 +27,9 @@ class StartGamePacket extends DataPacket{
public $generator;
public $gamemode;
public $eid;
public $spawnX;
public $spawnY;
public $spawnZ;
public $x;
public $y;
public $z;
@ -45,6 +48,9 @@ class StartGamePacket extends DataPacket{
$this->putInt($this->generator);
$this->putInt($this->gamemode);
$this->putInt($this->eid);
$this->putInt($this->spawnX);
$this->putInt($this->spawnY);
$this->putInt($this->spawnZ);
$this->putFloat($this->x);
$this->putFloat($this->y);
$this->putFloat($this->z);