mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-10 02:01:07 +01:00
Only freeze water under open air
and if light level < 10
This commit is contained in:
parent
c2098d777f
commit
f23014005f
1 changed files with 1 additions and 1 deletions
|
@ -1458,7 +1458,7 @@ minetest.register_abm({
|
||||||
interval = 32,
|
interval = 32,
|
||||||
chance = 8,
|
chance = 8,
|
||||||
action = function(pos, node)
|
action = function(pos, node)
|
||||||
if mcl_weather.has_snow(pos) and minetest.get_node_light(pos, 0) < 12 then
|
if mcl_weather.has_snow(pos) and minetest.get_natural_light(vector.offset(pos,0,1,0), 0.5) == minetest.LIGHT_MAX + 1 and minetest.get_node_light(pos) < 10 then
|
||||||
node.name = "mcl_core:ice"
|
node.name = "mcl_core:ice"
|
||||||
minetest.swap_node(pos, node)
|
minetest.swap_node(pos, node)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue