mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2024-11-05 09:50:27 +01:00
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,
|
||||
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",
|
||||
|
|
Loading…
Reference in New Issue
Block a user