remove deprecated reference to minetest.env
This commit is contained in:
parent
d89ec7c161
commit
9f4664dddd
|
@ -136,7 +136,7 @@ local function handle_damage(damage,player, downfall_origin)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
--check if player is affected by downfall, if it's dark there are nodes nearby
|
--check if player is affected by downfall, if it's dark there are nodes nearby
|
||||||
if minetest.env:get_node_light(player:get_pos(), 0.5) ~= 15 then return end
|
if minetest.get_node_light(player:get_pos(), 0.5) ~= 15 then return end
|
||||||
end
|
end
|
||||||
if math.random() < damage.chance then
|
if math.random() < damage.chance then
|
||||||
player:set_hp(player:get_hp()-damage.amount)
|
player:set_hp(player:get_hp()-damage.amount)
|
||||||
|
|
Loading…
Reference in New Issue