Fix a couple of recipes

master
Wuzzy 2021-11-04 02:57:48 +01:00
parent c5a4b41f49
commit 6ed31d2ff9
3 changed files with 7 additions and 9 deletions

View File

@ -130,7 +130,7 @@ minetest.register_craft({
local colors = {
{ "black", S("Black Steel Door"), "dye:black" },
{ "grey", S("Grey Steel Door"), "dye_grey" },
{ "grey", S("Grey Steel Door"), "dye:grey" },
{ "darkgrey", S("Dark Grey Steel Door"), "dye:dark_grey" },
{ "white", S("White Steel Door"), "dye:white" },
{ "magenta", S("Magenta Steel Door"), "dye:magenta" },

View File

@ -1123,10 +1123,6 @@ minetest.register_craft({
burntime = 10,
})
minetest.register_craft({
output = 'hades_core:nails 24',
recipe = {{'hades_core:steel_ingot'},}
})
minetest.register_craft({
output = 'hades_core:nails 6',
recipe = {{'hades_core:steel_rod'},}

View File

@ -255,8 +255,9 @@
minetest.register_craft( {
output = 'hades_furniture:bars 3',
recipe = {
{ 'hades_core:steel_rod','hades_core:steel_rod','hades_core:steel_rod' },
{ 'hades_core:steel_rod','hades_core:steel_rod','hades_core:steel_rod' },
{ 'hades_core:steel_rod','','hades_core:steel_rod' },
{ 'hades_core:steel_rod','','hades_core:steel_rod' },
{ 'hades_core:steel_rod','','hades_core:steel_rod' },
},
})
@ -274,8 +275,9 @@
minetest.register_craft( {
output = 'hades_furniture:rusty_bars 3',
recipe = {
{ 'hades_core:steel_rod','hades_core:iron_lump','hades_core:steel_rod' },
{ 'hades_core:steel_rod','hades_core:iron_lump','hades_core:steel_rod' },
{ 'hades_core:steel_rod','','hades_core:steel_rod' },
{ 'hades_core:iron_lump','','hades_core:iron_lump' },
{ 'hades_core:steel_rod','','hades_core:steel_rod' },
},
})