mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 09:56:06 +00:00
Updated for MCPE 0.9.0 build 7
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user