From c736a719ebd54769a167d95d8b8af58313e70090 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Tue, 12 Aug 2014 23:50:37 -0400 Subject: [PATCH] make horsetail ferns buildable_to --- ferns/horsetail.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ferns/horsetail.lua b/ferns/horsetail.lua index 464e8c9..803bc1f 100644 --- a/ferns/horsetail.lua +++ b/ferns/horsetail.lua @@ -32,6 +32,7 @@ minetest.register_node("ferns:horsetail_01", { tiles = {"ferns_horsetail_01.png"}, inventory_image = "ferns_horsetail_01.png", walkable = false, + buildable_to = true, groups = {snappy=3,flammable=2,attached_node=1,horsetail=1}, sounds = default.node_sound_leaves_defaults(), selection_box = { @@ -45,6 +46,7 @@ minetest.register_node("ferns:horsetail_02", { paramtype = "light", tiles = {"ferns_horsetail_02.png"}, walkable = false, + buildable_to = true, groups = {snappy=3,flammable=2,attached_node=1,horsetail=1,not_in_creative_inventory=1}, drop = "ferns:horsetail_04", sounds = default.node_sound_leaves_defaults(), @@ -58,6 +60,7 @@ minetest.register_node("ferns:horsetail_03", { paramtype = "light", tiles = {"ferns_horsetail_03.png"}, walkable = false, + buildable_to = true, groups = {snappy=3,flammable=2,attached_node=1,horsetail=1,not_in_creative_inventory=1}, drop = "ferns:horsetail_04", sounds = default.node_sound_leaves_defaults(), @@ -73,6 +76,7 @@ minetest.register_node("ferns:horsetail_04", { -- the one in inventory tiles = {"ferns_horsetail_04.png"}, inventory_image = "ferns_horsetail_04.png", walkable = false, + buildable_to = true, groups = {snappy=3,flammable=2,attached_node=1,horsetail=1}, sounds = default.node_sound_leaves_defaults(), selection_box = { @@ -171,4 +175,4 @@ plantslib:register_generate_plant({ }, "abstract_ferns.grow_horsetail" ) -end \ No newline at end of file +end