1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-07-28 09:50:18 +02:00

swap out old _base, _bottom, _left, etc nodenames in crafts

i.e. for all of the two-part nodes that have recently been converted
into single-part meshes and given new node names (with aliases).
This commit is contained in:
Vanessa Ezekowitz
2015-03-23 03:42:23 -04:00
parent a89456e925
commit 1796cf8bba
2 changed files with 9 additions and 9 deletions

View File

@ -174,7 +174,7 @@ for _, color in ipairs(lamp_colors) do
})
minetest.register_craft({
output = "homedecor:standing_lamp_bottom_"..color.."_off",
output = "homedecor:standing_lamp_"..color.."_off",
recipe = {
{"homedecor:table_lamp_"..color.."_off"},
{"group:stick"},
@ -184,9 +184,9 @@ for _, color in ipairs(lamp_colors) do
minetest.register_craft({
type = "shapeless",
output = "homedecor:standing_lamp_bottom_"..color.."_off",
output = "homedecor:standing_lamp_"..color.."_off",
recipe = {
"homedecor:standing_lamp_bottom_off",
"homedecor:standing_lamp_off",
"dye:"..color
},
})