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
|
@ -7,6 +7,7 @@ function beds.register_bed(name, def)
|
|||
tiles = def.tiles.bottom,
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
is_ground_content = false,
|
||||
stack_max = 1,
|
||||
groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, bed = 1},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
|
@ -87,6 +88,7 @@ function beds.register_bed(name, def)
|
|||
tiles = def.tiles.top,
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
is_ground_content = false,
|
||||
groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, bed = 2},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
node_box = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue