From f7b96e5b48f81bd6dbe648bbb785bbbc3f1ee082 Mon Sep 17 00:00:00 2001 From: Brandon Date: Mon, 30 May 2016 11:40:17 -0500 Subject: [PATCH] Change straw related recipes. closes #29 --- mods/cottages/nodes_straw.lua | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/mods/cottages/nodes_straw.lua b/mods/cottages/nodes_straw.lua index 13812d5..acf08fa 100644 --- a/mods/cottages/nodes_straw.lua +++ b/mods/cottages/nodes_straw.lua @@ -31,7 +31,7 @@ minetest.register_node("cottages:straw_mat", { paramtype = 'light', paramtype2 = "facedir", walkable = false, - groups = { snappy = 3 }, + groups = { snappy = 3,flammable=3 }, sounds = default.node_sound_leaves_defaults(), node_box = { type = "fixed", @@ -545,16 +545,14 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "cottages:straw_bale", + output = "cottages:straw 3", recipe = { - {"cottages:straw_mat"}, - {"cottages:straw_mat"}, - {"cottages:straw_mat"}, + {"cottages:straw_mat"}, }, }) minetest.register_craft({ - output = "cottages:straw", + output = "cottages:straw 4", recipe = { {"cottages:straw_bale"}, }, @@ -563,13 +561,13 @@ minetest.register_craft({ minetest.register_craft({ output = "cottages:straw_bale", recipe = { - {"cottages:straw"}, + {"cottages:straw","cottages:straw","cottages:straw","cottages:straw"}, }, }) minetest.register_craft({ - output = "cottages:straw_mat 3", + output = "cottages:straw_mat", recipe = { - {"cottages:straw_bale"}, + {"cottages:straw","cottages:straw","cottages:straw"}, }, })