mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-11 04:17:48 +00:00
Allow skin geometry name field to be missing
it's not needed, and plugins doing this might want to skip it
This commit is contained in:
parent
eaba105614
commit
e709e3c653
@ -1806,7 +1806,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer{
|
|||||||
$packet->clientData["SkinId"],
|
$packet->clientData["SkinId"],
|
||||||
base64_decode($packet->clientData["SkinData"] ?? ""),
|
base64_decode($packet->clientData["SkinData"] ?? ""),
|
||||||
base64_decode($packet->clientData["CapeData"] ?? ""),
|
base64_decode($packet->clientData["CapeData"] ?? ""),
|
||||||
$packet->clientData["SkinGeometryName"],
|
$packet->clientData["SkinGeometryName"] ?? "",
|
||||||
base64_decode($packet->clientData["SkinGeometry"] ?? "")
|
base64_decode($packet->clientData["SkinGeometry"] ?? "")
|
||||||
);
|
);
|
||||||
$skin->debloatGeometryData();
|
$skin->debloatGeometryData();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user