change airbrush recipe

to 1 brass ingot, 2 steel ingots, and 1 plastic sheet
This commit is contained in:
Vanessa Dannenberg 2018-11-23 10:38:05 -05:00
parent 334de564fd
commit 1fd850d37c
1 changed files with 3 additions and 3 deletions

View File

@ -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" }
},
})