From c5a2bbc3ba2e5b5db9fefc4c754b8044c988c5ab Mon Sep 17 00:00:00 2001 From: HIPPOKLEIDES <31572523+HIPPOKLEIDES@users.noreply.github.com> Date: Sat, 21 Sep 2024 06:10:27 -0400 Subject: [PATCH] Fix ingredients in shapeless recipe schema (#309) --- source/behavior/recipes/types/recipe_shapeless.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/behavior/recipes/types/recipe_shapeless.json b/source/behavior/recipes/types/recipe_shapeless.json index 735b92ab..b7dfaa33 100644 --- a/source/behavior/recipes/types/recipe_shapeless.json +++ b/source/behavior/recipes/types/recipe_shapeless.json @@ -12,7 +12,8 @@ "ingredients": { "description": "Items used as input (without a shape) for the recipe.", "title": "Ingredients", - "oneOf": [{ "$ref": "./base types/item.json" }, { "type": "array", "items": { "$ref": "./base types/item.json" } }] + "type": "array", + "items": { "$ref": "./base types/item.json" } }, "group": { "type": "string", "title": "Group", "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED" }, "priority": { "type": "integer", "description": "Item used as output for the furnace recipe.", "title": "Priority" },