Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add support for custom bed sounds
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
mods/beds/api.lua
|
@@ -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", |
|
|