pocketmine\inventory\ShapelessRecipe::getResult PHP Method

getResult() public method

public getResult ( )
    public function getResult()
    {
        return clone $this->output;
    }

Usage Example

コード例 #1
0
 private static function writeShapelessRecipe(ShapelessRecipe $recipe, BinaryStream $stream)
 {
     $stream->putInt($recipe->getIngredientCount());
     foreach ($recipe->getIngredientList() as $item) {
         $stream->putSlot($item);
     }
     $stream->putInt(1);
     $stream->putSlot($recipe->getResult());
     $stream->putUUID($recipe->getId());
     return CraftingDataPacket::ENTRY_SHAPELESS;
 }
All Usage Examples Of pocketmine\inventory\ShapelessRecipe::getResult