Skip to content

Commit

Permalink
Add support for custom bed sounds
Browse files Browse the repository at this point in the history
  • Loading branch information
ogbaba authored and sofar committed Jan 12, 2017
1 parent df19b4e commit 57eb906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mods/beds/api.lua
Expand Up @@ -34,7 +34,7 @@ function beds.register_bed(name, def)
is_ground_content = false,
stack_max = 1,
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, bed = 1},
sounds = default.node_sound_wood_defaults(),
sounds = def.sounds or default.node_sound_wood_defaults(),
node_box = {
type = "fixed",
fixed = def.nodebox.bottom,
Expand Down Expand Up @@ -138,7 +138,7 @@ function beds.register_bed(name, def)
is_ground_content = false,
pointable = false,
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, bed = 2},
sounds = default.node_sound_wood_defaults(),
sounds = def.sounds or default.node_sound_wood_defaults(),
drop = name .. "_bottom",
node_box = {
type = "fixed",
Expand Down

0 comments on commit 57eb906

Please sign in to comment.