Skip to content

Commit

Permalink
fix paramtype of thin_ice nodes.
Browse files Browse the repository at this point in the history
  • Loading branch information
HeroOfTheWinds committed Jul 1, 2014
1 parent 3c53224 commit b52da30
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nodes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit b52da30

Please sign in to comment.