14 lines
366 B
Lua
Raw Normal View History

-- LUALOCALS < ---------------------------------------------------------
local minetest
= minetest
-- LUALOCALS > ---------------------------------------------------------
minetest.register_on_player_hpchange(function(player, hp)
local t = player:get_hp()
if hp + t <= 0 then
hp = 1 - t
player:set_attribute("dhp", "-1")
end
return hp
end, true)