Add support for custom bed sounds

This commit is contained in:
Baptiste Pouget 2017-01-12 18:45:59 +01:00 committed by Auke Kok
parent df19b4eab0
commit 57eb906047
1 changed files with 2 additions and 2 deletions

View File

@ -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,
@ -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",