Skip to content
Snippets Groups Projects
Commit b52da304 authored by Chris N's avatar Chris N
Browse files

fix paramtype of thin_ice nodes.

parent 3c532247
No related branches found
No related tags found
No related merge requests found
...@@ -81,6 +81,7 @@ minetest.register_node("caverealms:thin_ice", { ...@@ -81,6 +81,7 @@ minetest.register_node("caverealms:thin_ice", {
drawtype = "glasslike", drawtype = "glasslike",
sunlight_propagates = true, sunlight_propagates = true,
freezemelt = "default:water_source", freezemelt = "default:water_source",
paramtype = "light",
}) })
--alternate version for stalactites --alternate version for stalactites
...@@ -95,6 +96,7 @@ minetest.register_node("caverealms:hanging_thin_ice", { ...@@ -95,6 +96,7 @@ minetest.register_node("caverealms:hanging_thin_ice", {
sunlight_propagates = true, sunlight_propagates = true,
drop = "caverealms:thin_ice", drop = "caverealms:thin_ice",
freezemelt = "default:water_flowing", freezemelt = "default:water_flowing",
paramtype = "light",
after_dig_node = function(pos, oldnode, oldmetadata, digger) after_dig_node = function(pos, oldnode, oldmetadata, digger)
if FALLING_ICICLES then if FALLING_ICICLES then
if math.random() <= FALLCHA then if math.random() <= FALLCHA then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment