From bf3179083a33c4705dfffd6f3ad074d6d8b5d77b Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Sun, 29 Jun 2014 23:58:42 -0400 Subject: [PATCH] use 2 instead of 4 tabletops to translate small round -> small square and small square -> large, applies to both glass and wood --- homedecor/crafts.lua | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/homedecor/crafts.lua b/homedecor/crafts.lua index bc3d06c1..5515846d 100644 --- a/homedecor/crafts.lua +++ b/homedecor/crafts.lua @@ -237,18 +237,16 @@ minetest.register_craft( { }) minetest.register_craft( { - output = "homedecor:glass_table_small_square_b 4", + output = "homedecor:glass_table_small_square_b 2", recipe = { {"homedecor:glass_table_small_round", "homedecor:glass_table_small_round" }, - {"homedecor:glass_table_small_round", "homedecor:glass_table_small_round" } } }) minetest.register_craft( { - output = "homedecor:glass_table_large_b 4", + output = "homedecor:glass_table_large_b 2", recipe = { { "homedecor:glass_table_small_square", "homedecor:glass_table_small_square" }, - { "homedecor:glass_table_small_square", "homedecor:glass_table_small_square" } } }) @@ -264,18 +262,16 @@ minetest.register_craft( { }) minetest.register_craft( { - output = "homedecor:wood_table_small_square_b 4", + output = "homedecor:wood_table_small_square_b 2", recipe = { { "homedecor:wood_table_small_round","homedecor:wood_table_small_round" }, - { "homedecor:wood_table_small_round","homedecor:wood_table_small_round" } } }) minetest.register_craft( { - output = "homedecor:wood_table_large_b 4", + output = "homedecor:wood_table_large_b 2", recipe = { { "homedecor:wood_table_small_square", "homedecor:wood_table_small_square" }, - { "homedecor:wood_table_small_square", "homedecor:wood_table_small_square" } } })