Fixed RotateHeadPacket not having pitch

This commit is contained in:
Shoghi Cervantes 2014-02-09 05:53:16 +01:00
parent 8739017002
commit 11c9972eb9

View File

@ -1495,7 +1495,7 @@ class Player{
$this->teleport($this->lastCorrect, $this->entity->yaw, $this->entity->pitch, false);
}
}else{
$this->entity->setPosition($this->entity, $packet->yaw, $packet->pitch);
$this->entity->setPosition($this->entity, $packet->yaw, $this->entity->pitch);
}
}
break;