forked from mtcontrib/plantlife_modpack
make all vines buildable_to
This commit is contained in:
parent
a2cb400daf
commit
5e8d4084ea
|
@ -92,6 +92,7 @@ minetest.register_node("vines:side", {
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
|
buildable_to = true,
|
||||||
tile_images = { "vines_side.png" },
|
tile_images = { "vines_side.png" },
|
||||||
drawtype = "signlike",
|
drawtype = "signlike",
|
||||||
inventory_image = "vines_side.png",
|
inventory_image = "vines_side.png",
|
||||||
|
@ -119,6 +120,7 @@ minetest.register_node("vines:side_rotten", {
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
|
buildable_to = true,
|
||||||
tile_images = { "vines_side_rotten.png" },
|
tile_images = { "vines_side_rotten.png" },
|
||||||
drawtype = "signlike",
|
drawtype = "signlike",
|
||||||
inventory_image = "vines_side.png",
|
inventory_image = "vines_side.png",
|
||||||
|
@ -137,6 +139,7 @@ minetest.register_node("vines:willow", {
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
|
buildable_to = true,
|
||||||
tile_images = { "vines_willow.png" },
|
tile_images = { "vines_willow.png" },
|
||||||
drawtype = "signlike",
|
drawtype = "signlike",
|
||||||
inventory_image = "vines_willow.png",
|
inventory_image = "vines_willow.png",
|
||||||
|
@ -164,6 +167,7 @@ minetest.register_node("vines:willow_rotten", {
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
drop = "",
|
drop = "",
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
|
buildable_to = true,
|
||||||
tile_images = { "vines_willow_rotten.png" },
|
tile_images = { "vines_willow_rotten.png" },
|
||||||
drawtype = "signlike",
|
drawtype = "signlike",
|
||||||
inventory_image = "vines_willow.png",
|
inventory_image = "vines_willow.png",
|
||||||
|
@ -180,6 +184,7 @@ minetest.register_node("vines:root", {
|
||||||
climbable = true,
|
climbable = true,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
buildable_to = true,
|
||||||
tile_images = { "vines_root.png" },
|
tile_images = { "vines_root.png" },
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
inventory_image = "vines_root.png",
|
inventory_image = "vines_root.png",
|
||||||
|
@ -198,6 +203,7 @@ minetest.register_node("vines:vine", {
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
buildable_to = true,
|
||||||
tile_images = { "vines_vine.png" },
|
tile_images = { "vines_vine.png" },
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
inventory_image = "vines_vine.png",
|
inventory_image = "vines_vine.png",
|
||||||
|
@ -225,6 +231,7 @@ minetest.register_node("vines:vine_rotten", {
|
||||||
drop = "",
|
drop = "",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
buildable_to = true,
|
||||||
tile_images = { "vines_vine_rotten.png" },
|
tile_images = { "vines_vine_rotten.png" },
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
inventory_image = "vines_vine_rotten.png",
|
inventory_image = "vines_vine_rotten.png",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user