Skip to content

Commit

Permalink
Fix is_ground_content settings for nodes
Browse files Browse the repository at this point in the history
Remove line if set to the default of 'true'
  • Loading branch information
paramat committed Jun 18, 2015
1 parent 15ef8b0 commit e15fde1
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 47 deletions.
2 changes: 2 additions & 0 deletions mods/beds/api.lua
Expand Up @@ -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(),
Expand Down Expand Up @@ -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 = {
Expand Down

0 comments on commit e15fde1

Please sign in to comment.