From 328b023175e6ed16e4c7e0649f02fbb5f15b1f72 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Sun, 30 Sep 2012 03:51:50 -0400 Subject: [PATCH] Minor recipe tweak to small round -> small square wood table --- crafts.lua | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/crafts.lua b/crafts.lua index 066cffa7..87d84133 100644 --- a/crafts.lua +++ b/crafts.lua @@ -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({