From 13b743622b98452995de7ea5d063bcb06958afa7 Mon Sep 17 00:00:00 2001 From: adrido Date: Wed, 22 Feb 2017 11:16:56 +0100 Subject: [PATCH] Fix wooden frame not breakable by hand --- furniture.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/furniture.lua b/furniture.lua index 02e4fe4..1fcd3f0 100644 --- a/furniture.lua +++ b/furniture.lua @@ -185,7 +185,7 @@ minetest.register_node("darkage:wood_frame", { is_ground_content = false, paramtype = "light", sunlight_propagates = true, - groups = {snappy=1, choppy=2, not_cuttable=1}, + groups = {snappy=1, choppy=2, oddly_breakable_by_hand = 3, not_cuttable=1}, sounds = default.node_sound_stone_defaults() })