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:
@ -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
|
||||
},
|
||||
})
|
||||
|
Reference in New Issue
Block a user