From 1fd850d37c21bec3fffa29aa299c2fefd7f940ad Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Fri, 23 Nov 2018 10:38:05 -0500 Subject: [PATCH] change airbrush recipe to 1 brass ingot, 2 steel ingots, and 1 plastic sheet --- init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index 27be3f1..9edd87f 100644 --- a/init.lua +++ b/init.lua @@ -1102,9 +1102,9 @@ minetest.register_tool("unifieddyes:airbrush", { minetest.register_craft( { output = "unifieddyes:airbrush", recipe = { - { "default:gold_ingot", "", "bucket:bucket_empty" }, - { "", "default:steel_ingot", "" }, - { "", "", "default:steel_ingot" } + { "basic_materials:brass_ingot", "", "basic_materials:plastic_sheet" }, + { "", "default:steel_ingot", "" }, + { "", "", "default:steel_ingot" } }, })