From fe164e5f41d2a33c66c90f9dd447dc9a1ca11e5b Mon Sep 17 00:00:00 2001 From: cora Date: Fri, 20 May 2022 13:36:41 +0200 Subject: [PATCH] add basic mcl2 node properties --- mods/ITEMS/mcl_bells/init.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_bells/init.lua b/mods/ITEMS/mcl_bells/init.lua index 4ce591d7d..141a4b7f7 100644 --- a/mods/ITEMS/mcl_bells/init.lua +++ b/mods/ITEMS/mcl_bells/init.lua @@ -17,7 +17,12 @@ minetest.register_node("mcl_bells:bell", { 4/16, 7/16, 4/16, }, }, - groups = { pickaxey = 1 } + is_ground_content = false, + stack_max = 64, + groups = {pickaxey=2, deco_block=1 }, + sounds = mcl_sounds.node_sound_metal_defaults(), + _mcl_blast_resistance = 6, + _mcl_hardness = 5, }) if has_mcl_wip then