Fixed missing field on Persona skin encode

This commit is contained in:
Dylan K. Taylor 2020-11-21 18:01:56 +00:00
parent e8e6b9304c
commit 9e85ee4a7a

View File

@ -148,6 +148,7 @@ class NetworkBinaryStream extends BinaryStream{
$this->putSkinImage($animation->getImage()); $this->putSkinImage($animation->getImage());
$this->putLInt($animation->getType()); $this->putLInt($animation->getType());
$this->putLFloat($animation->getFrames()); $this->putLFloat($animation->getFrames());
$this->putLInt($animation->getExpressionType());
} }
$this->putSkinImage($skin->getCapeImage()); $this->putSkinImage($skin->getCapeImage());
$this->putString($skin->getGeometryData()); $this->putString($skin->getGeometryData());