From 9c09ac86d46a886bb04d94763774d9321574702f Mon Sep 17 00:00:00 2001 From: tenplus1 Date: Sat, 24 Dec 2022 16:18:22 +0000 Subject: [PATCH] recipe for yellow dye using onion --- crops/onion.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/crops/onion.lua b/crops/onion.lua index 049f869..af002ec 100644 --- a/crops/onion.lua +++ b/crops/onion.lua @@ -36,6 +36,12 @@ minetest.register_craft({ replacements = {{"farming:pot", "farming:pot"}} }) +-- yellow dye +minetest.register_craft({ + output = "dye:yellow", + recipe = {{"group:food_onion"}} +}) + -- crop definition local def = { drawtype = "plantlike",