1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2024-09-28 14:20:20 +02:00

Minor recipe tweak to small round -> small square wood table

This commit is contained in:
Vanessa Ezekowitz 2012-09-30 03:51:50 -04:00
parent 77f8ea5aa4
commit 328b023175

View File

@ -305,7 +305,7 @@ minetest.register_craft({
minetest.register_craft( {
type = "shapeless",
output = 'homedecor:wood_table_small_square 2',
output = 'homedecor:wood_table_small_square',
recipe = { 'homedecor:wood_table_small_round' },
})
@ -975,7 +975,7 @@ end
-- Recycling recipes
-- Glass object recycle via the glass fragments item/recipe in the Vessels mod.
-- Some glass objects recycle via the glass fragments item/recipe in the Vessels mod.
minetest.register_craft({
type = "shapeless",
@ -1007,6 +1007,17 @@ minetest.register_craft({
}
})
minetest.register_craft({
type = "shapeless",
output = "vessels:glass_fragments 2",
recipe = {
"homedecor:skylight",
"homedecor:skylight",
"homedecor:skylight",
"homedecor:skylight"
}
})
-- Wooden tabletops can turn into sticks
minetest.register_craft({