'Can shapeless recipes have multiple outputs in Minecraft Bedrock?
I am relatively new to making addons and stuff, and this is my first recipe. I am trying to add a shapeless recipe for cheese that includes a brown mushroom and a milk bucket. I want it to return the bucket, but I get an error message: \[Recipes\]\[error\]-recipes/cheese_from_brown_mushroom.json | pizza:cheese | unsupported multiple output types for result list in shapeless
Is there a way I can fix this?
Here is my code:
{
"format_version": "1.12",
"minecraft:recipe_shaped": {
"description": {
"identifier": "pizza:cheese_from_brown_mushroom"
},
"tags": [ "crafting_table" ],
"ingredients": [
{
"item": "minecraft:milk_bucket"
},
{
"item": "minecraft:brown_mushroom"
}
],
"result": [
{ "item": "pizza:cheese" },
{ "item": "minecraft:bucket" }
]
}
}
Solution 1:[1]
No There can only be one output. You do not need to set the bucket as a result. like when you craft a cake in the game the bucket will be left in the crafting table
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Michael |
