summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorLNJ <git@lnj.li>2017-03-26 20:58:55 +0200
committerLNJ <git@lnj.li>2017-03-26 20:58:55 +0200
commit790360934c206257e3189c52d5efbade03c79dd1 (patch)
tree127712896d053cd832b3d8916e4a05648ca68a7b /init.lua
parentfe0daf9bdce717db3a807b3e88d4f3b5c6913dcf (diff)
Make Wooden Drawer breakable by hand and add sounds
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index 4ddf992..0810b25 100644
--- a/init.lua
+++ b/init.lua
@@ -354,6 +354,7 @@ end
drawers.register_drawer("drawers:wood", {
description = "Wooden Drawer",
- groups = {choppy = 3},
+ groups = {choppy = 3, oddly_breakable_by_hand = 2},
+ sounds = default.node_sound_wood_defaults(),
drawer_stack_max_factor = 3 * 8 -- normal chest size
})