mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 10:22:56 +00:00
CraftingDataPacket: Remove useless @var comment
This commit is contained in:
@ -84,7 +84,6 @@ class CraftingDataPacket extends DataPacket{
|
|||||||
case self::ENTRY_SHAPELESS_CHEMISTRY:
|
case self::ENTRY_SHAPELESS_CHEMISTRY:
|
||||||
$entry["recipe_id"] = $this->getString();
|
$entry["recipe_id"] = $this->getString();
|
||||||
$ingredientCount = $this->getUnsignedVarInt();
|
$ingredientCount = $this->getUnsignedVarInt();
|
||||||
/** @var Item */
|
|
||||||
$entry["input"] = [];
|
$entry["input"] = [];
|
||||||
for($j = 0; $j < $ingredientCount; ++$j){
|
for($j = 0; $j < $ingredientCount; ++$j){
|
||||||
$entry["input"][] = $in = $this->getRecipeIngredient();
|
$entry["input"][] = $in = $this->getRecipeIngredient();
|
||||||
|
Reference in New Issue
Block a user