mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-07 06:06:10 -04:00
Fix is_ground_content settings for nodes
Remove line if set to the default of 'true'
This commit is contained in:
parent
15ef8b0995
commit
e15fde1624
10 changed files with 35 additions and 47 deletions
|
@ -11,7 +11,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
|
|||
tiles = images,
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
is_ground_content = true,
|
||||
is_ground_content = false,
|
||||
groups = groups,
|
||||
sounds = sounds,
|
||||
node_box = {
|
||||
|
@ -87,7 +87,7 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
|
|||
tiles = images,
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
is_ground_content = true,
|
||||
is_ground_content = false,
|
||||
groups = groups,
|
||||
sounds = sounds,
|
||||
node_box = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue