diff --git a/src/pocketmine/network/mcpe/protocol/CraftingDataPacket.php b/src/pocketmine/network/mcpe/protocol/CraftingDataPacket.php index 2401e862d..351582d47 100644 --- a/src/pocketmine/network/mcpe/protocol/CraftingDataPacket.php +++ b/src/pocketmine/network/mcpe/protocol/CraftingDataPacket.php @@ -84,7 +84,6 @@ class CraftingDataPacket extends DataPacket{ case self::ENTRY_SHAPELESS_CHEMISTRY: $entry["recipe_id"] = $this->getString(); $ingredientCount = $this->getUnsignedVarInt(); - /** @var Item */ $entry["input"] = []; for($j = 0; $j < $ingredientCount; ++$j){ $entry["input"][] = $in = $this->getRecipeIngredient();