mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-01 07:39:57 +00:00
Fixed typo in login handler (wrong variable to store persona pieces) (#3422)
This commit is contained in:
parent
a107ad7404
commit
f79182852b
@ -1863,7 +1863,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer{
|
|||||||
|
|
||||||
$personaPieces = [];
|
$personaPieces = [];
|
||||||
foreach($packet->clientData["PersonaPieces"] as $piece){
|
foreach($packet->clientData["PersonaPieces"] as $piece){
|
||||||
$personaPiece[] = new PersonaSkinPiece($piece["PieceId"], $piece["PieceType"], $piece["PackId"], $piece["IsDefault"], $piece["ProductId"]);
|
$personaPieces[] = new PersonaSkinPiece($piece["PieceId"], $piece["PieceType"], $piece["PackId"], $piece["IsDefault"], $piece["ProductId"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
$pieceTintColors = [];
|
$pieceTintColors = [];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user