From b52da30429976d6c01c7434ab1f3285dcbb03665 Mon Sep 17 00:00:00 2001 From: Chris N Date: Mon, 30 Jun 2014 17:01:10 -1000 Subject: [PATCH] fix paramtype of thin_ice nodes. --- nodes.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nodes.lua b/nodes.lua index 2f522a5..7588234 100644 --- a/nodes.lua +++ b/nodes.lua @@ -81,6 +81,7 @@ minetest.register_node("caverealms:thin_ice", { drawtype = "glasslike", sunlight_propagates = true, freezemelt = "default:water_source", + paramtype = "light", }) --alternate version for stalactites @@ -95,6 +96,7 @@ minetest.register_node("caverealms:hanging_thin_ice", { sunlight_propagates = true, drop = "caverealms:thin_ice", freezemelt = "default:water_flowing", + paramtype = "light", after_dig_node = function(pos, oldnode, oldmetadata, digger) if FALLING_ICICLES then if math.random() <= FALLCHA then