From 300b48d6ff1908bbe3c41722e65a47301ae0ff9b Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 2 Mar 2017 16:39:58 +0100 Subject: [PATCH] Fix top snow attributes --- mods/ITEMS/mcl_core/nodes.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ITEMS/mcl_core/nodes.lua b/mods/ITEMS/mcl_core/nodes.lua index be189a1d9..f3d883b49 100644 --- a/mods/ITEMS/mcl_core/nodes.lua +++ b/mods/ITEMS/mcl_core/nodes.lua @@ -1668,14 +1668,14 @@ minetest.register_node("mcl_core:snow", { paramtype = "light", buildable_to = true, drawtype = "nodebox", - stack_max = 16, + stack_max = 64, node_box = { type = "fixed", fixed = { {-0.5, -0.5, -0.5, 0.5, -0.5+2/16, 0.5}, }, }, - groups = {shovely=1, falling_node=1,deco_block=1}, + groups = {shovely=1, attached_node=1,deco_block=1}, sounds = mcl_sounds.node_sound_snow_defaults(), drop = "mcl_throwing:snowball 2", _mcl_blast_resistance = 0.5,