From 5e8d4084ead72acf5f80f241ab6006e08f8e5f80 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Mon, 22 Dec 2014 13:48:26 -0500 Subject: [PATCH] make all vines buildable_to --- vines/init.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/vines/init.lua b/vines/init.lua index 97cc252..6d2a6ef 100644 --- a/vines/init.lua +++ b/vines/init.lua @@ -92,6 +92,7 @@ minetest.register_node("vines:side", { sunlight_propagates = true, paramtype = "light", paramtype2 = "wallmounted", + buildable_to = true, tile_images = { "vines_side.png" }, drawtype = "signlike", inventory_image = "vines_side.png", @@ -119,6 +120,7 @@ minetest.register_node("vines:side_rotten", { sunlight_propagates = true, paramtype = "light", paramtype2 = "wallmounted", + buildable_to = true, tile_images = { "vines_side_rotten.png" }, drawtype = "signlike", inventory_image = "vines_side.png", @@ -137,6 +139,7 @@ minetest.register_node("vines:willow", { sunlight_propagates = true, paramtype = "light", paramtype2 = "wallmounted", + buildable_to = true, tile_images = { "vines_willow.png" }, drawtype = "signlike", inventory_image = "vines_willow.png", @@ -164,6 +167,7 @@ minetest.register_node("vines:willow_rotten", { paramtype = "light", drop = "", paramtype2 = "wallmounted", + buildable_to = true, tile_images = { "vines_willow_rotten.png" }, drawtype = "signlike", inventory_image = "vines_willow.png", @@ -180,6 +184,7 @@ minetest.register_node("vines:root", { climbable = true, sunlight_propagates = true, paramtype = "light", + buildable_to = true, tile_images = { "vines_root.png" }, drawtype = "plantlike", inventory_image = "vines_root.png", @@ -198,6 +203,7 @@ minetest.register_node("vines:vine", { sunlight_propagates = true, drop = "", paramtype = "light", + buildable_to = true, tile_images = { "vines_vine.png" }, drawtype = "plantlike", inventory_image = "vines_vine.png", @@ -225,6 +231,7 @@ minetest.register_node("vines:vine_rotten", { drop = "", sunlight_propagates = true, paramtype = "light", + buildable_to = true, tile_images = { "vines_vine_rotten.png" }, drawtype = "plantlike", inventory_image = "vines_vine_rotten.png",