Found more unknown things

This commit is contained in:
Dylan K. Taylor
2018-03-25 12:38:43 +01:00
parent d97abfaa7b
commit 3fe4ebc301
3 changed files with 18 additions and 15 deletions

View File

@ -54,9 +54,9 @@ class MovePlayerPacket extends DataPacket{
/** @var int */
public $ridingEid = 0;
/** @var int */
public $int1 = 0;
public $teleportCause = 0;
/** @var int */
public $int2 = 0;
public $teleportItem = 0;
protected function decodePayload(){
$this->entityRuntimeId = $this->getEntityRuntimeId();
@ -68,8 +68,8 @@ class MovePlayerPacket extends DataPacket{
$this->onGround = $this->getBool();
$this->ridingEid = $this->getEntityRuntimeId();
if($this->mode === MovePlayerPacket::MODE_TELEPORT){
$this->int1 = $this->getLInt();
$this->int2 = $this->getLInt();
$this->teleportCause = $this->getLInt();
$this->teleportItem = $this->getLInt();
}
}
@ -83,8 +83,8 @@ class MovePlayerPacket extends DataPacket{
$this->putBool($this->onGround);
$this->putEntityRuntimeId($this->ridingEid);
if($this->mode === MovePlayerPacket::MODE_TELEPORT){
$this->putLInt($this->int1);
$this->putLInt($this->int2);
$this->putLInt($this->teleportCause);
$this->putLInt($this->teleportItem);
}
}