make all vines buildable_to

This commit is contained in:
Vanessa Ezekowitz 2014-12-22 13:48:26 -05:00
parent a2cb400daf
commit 5e8d4084ea
1 changed files with 7 additions and 0 deletions

View File

@ -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",