mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-12-25 01:19:33 +01:00
Sunlight propagates through deadbush and tallgrass
This commit is contained in:
parent
c6c8232c6d
commit
9dd8cebcef
2 changed files with 2 additions and 0 deletions
|
@ -1697,6 +1697,7 @@ minetest.register_node("mcl_core:deadbush", {
|
||||||
inventory_image = "default_dry_shrub.png",
|
inventory_image = "default_dry_shrub.png",
|
||||||
wield_image = "default_dry_shrub.png",
|
wield_image = "default_dry_shrub.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
buildable_to = true,
|
buildable_to = true,
|
||||||
|
|
|
@ -62,6 +62,7 @@ minetest.register_node("mcl_flowers:tallgrass", {
|
||||||
inventory_image = "mcl_flowers_tallgrass.png",
|
inventory_image = "mcl_flowers_tallgrass.png",
|
||||||
wield_image = "mcl_flowers_tallgrass.png",
|
wield_image = "mcl_flowers_tallgrass.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
buildable_to = true,
|
buildable_to = true,
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
|
|
Loading…
Reference in a new issue