From 1195132fb06c8bcd39100dbd6cc4276d78a3dc00 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Sat, 20 Apr 2013 19:39:28 -0400 Subject: [PATCH] fix broken brass ingot recipe, revise wood and glass small round -> small square -> large square table recipes. --- crafts.lua | 106 +++++++++++++++++++++++++++-------------------------- 1 file changed, 55 insertions(+), 51 deletions(-) diff --git a/crafts.lua b/crafts.lua index ab4f9757..ab669b79 100644 --- a/crafts.lua +++ b/crafts.lua @@ -274,20 +274,67 @@ minetest.register_craft( { }, }) --- +minetest.register_craft( { + output = 'homedecor:glass_table_small_square 4', + recipe = { + {'homedecor:glass_table_small_round', 'homedecor:glass_table_small_round' }, + {'homedecor:glass_table_small_round', 'homedecor:glass_table_small_round' } + } +}) minetest.register_craft( { - type = "shapeless", - output = 'homedecor:glass_table_small_square', - recipe = { 'homedecor:glass_table_small_round' }, + output = 'homedecor:glass_table_large 4', + recipe = { + { 'homedecor:glass_table_small_square', 'homedecor:glass_table_small_square' }, + { 'homedecor:glass_table_small_square', 'homedecor:glass_table_small_square' } + } }) -- minetest.register_craft( { - type = "shapeless", - output = 'homedecor:glass_table_large', - recipe = { 'homedecor:glass_table_small_square' }, + output = 'homedecor:wood_table_small_round 15', + recipe = { + { '', 'default:wood', '' }, + { 'default:wood', 'default:wood', 'default:wood' }, + { '', 'default:wood', '' }, + }, +}) + +minetest.register_craft( { + output = 'homedecor:wood_table_small_square 4', + 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 4', + recipe = { + { 'homedecor:wood_table_small_square', 'homedecor:wood_table_small_square' }, + { 'homedecor:wood_table_small_square', 'homedecor:wood_table_small_square' } + } +}) + +-- + +minetest.register_craft({ + type = 'fuel', + recipe = 'homedecor:wood_table_small_round', + burntime = 30, +}) + +minetest.register_craft({ + type = 'fuel', + recipe = 'homedecor:wood_table_small_square', + burntime = 30, +}) + +minetest.register_craft({ + type = 'fuel', + recipe = 'homedecor:wood_table_large', + burntime = 30, }) -- @@ -347,49 +394,6 @@ minetest.register_craft( { }, }) --- - -minetest.register_craft( { - output = 'homedecor:wood_table_small_round 15', - recipe = { - { '', 'default:wood', '' }, - { 'default:wood', 'default:wood', 'default:wood' }, - { '', 'default:wood', '' }, - }, -}) - -minetest.register_craft({ - type = 'fuel', - recipe = 'homedecor:wood_table_small_round', - burntime = 30, -}) - -minetest.register_craft( { - type = "shapeless", - output = 'homedecor:wood_table_small_square', - recipe = { 'homedecor:wood_table_small_round' }, -}) - -minetest.register_craft({ - type = 'fuel', - recipe = 'homedecor:wood_table_small_square', - burntime = 30, -}) - --- - -minetest.register_craft( { - type = "shapeless", - output = 'homedecor:wood_table_large', - recipe = { 'homedecor:wood_table_small_square' }, -}) - -minetest.register_craft({ - type = 'fuel', - recipe = 'homedecor:wood_table_large', - burntime = 30, -}) - -- Various colors of shutters minetest.register_craft( { @@ -810,7 +814,7 @@ minetest.register_craft( { output = 'homedecor:brass_ingot 2', recipe = { 'moreores:silver_ingot', - 'moreores:copper_ingot', + 'default:copper_ingot', }, })