diff --git a/src/pocketmine/entity/Human.php b/src/pocketmine/entity/Human.php index d359cba9c..96761c471 100644 --- a/src/pocketmine/entity/Human.php +++ b/src/pocketmine/entity/Human.php @@ -766,6 +766,9 @@ class Human extends Creature implements ProjectileSource, InventoryHolder{ $pk->metadata = $this->propertyManager->getAll(); $player->dataPacket($pk); + //TODO: Hack for MCPE 1.2.13: DATA_NAMETAG is useless in AddPlayerPacket, so it has to be sent separately + $this->sendData($player, [self::DATA_NAMETAG => [self::DATA_TYPE_STRING, $this->getNameTag()]]); + $this->armorInventory->sendContents($player); if(!($this instanceof Player)){