From 790360934c206257e3189c52d5efbade03c79dd1 Mon Sep 17 00:00:00 2001 From: LNJ Date: Sun, 26 Mar 2017 20:58:55 +0200 Subject: [PATCH] Make Wooden Drawer breakable by hand and add sounds --- depends.txt | 1 + init.lua | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/depends.txt b/depends.txt index 3e3d783..5e28bee 100644 --- a/depends.txt +++ b/depends.txt @@ -1 +1,2 @@ +default screwdriver? 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 })