Remove some old protocol leftovers

This commit is contained in:
Dylan K. Taylor 2017-01-24 12:08:25 +00:00
parent 75a38699e2
commit 77456702e9
2 changed files with 0 additions and 10 deletions

View File

@ -41,11 +41,6 @@ class MovePlayerPacket extends DataPacket{
public $mode = self::MODE_NORMAL;
public $onGround;
public function clean(){
$this->teleport = false;
return parent::clean();
}
public function decode(){
$this->eid = $this->getEntityId(); //EntityRuntimeID
$this->getVector3f($this->x, $this->y, $this->z);

View File

@ -32,11 +32,6 @@ class SetEntityMotionPacket extends DataPacket{
public $motionY;
public $motionZ;
public function clean(){
$this->entities = [];
return parent::clean();
}
public function decode(){
}