From 0c9187997cf0c4c1aca74d742a9dadaaf854c45e Mon Sep 17 00:00:00 2001 From: LazyJ Date: Thu, 5 Jun 2014 10:43:12 -0700 Subject: [PATCH] Code fix to allow snow cobble to cook into ice. --- nodes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.lua b/nodes.lua index 6a043b7..d884ddf 100644 --- a/nodes.lua +++ b/nodes.lua @@ -290,7 +290,7 @@ minetest.register_node("snow:snow_cobble", { paramtype2 = "facedir", -- I made this a little harder to dig than snow blocks because -- I imagine snow brick as being much more dense and solid than fluffy snow. ~ LazyJ - groups = {cracky=2, crumbly=2, choppy=2, oddly_breakable_by_hand=2, melts=1, icemaker=1, cooks_into_ice}, + groups = {cracky=2, crumbly=2, choppy=2, oddly_breakable_by_hand=2, melts=1, icemaker=1, cooks_into_ice=1}, sounds = default.node_sound_dirt_defaults({ footstep = {name="default_snow_footstep", gain=0.25}, dig = {name="default_dig_crumbly", gain=0.4},