Implement starve damage

This commit is contained in:
Elias Fleckenstein 2021-04-14 19:09:46 +02:00
parent a3af1cdf6e
commit 9c75cd1a79

View File

@ -164,7 +164,7 @@ minetest.register_globalstep(function(dtime)
if mod_death_messages then if mod_death_messages then
mcl_death_messages.player_damage(player, S("@1 starved to death.", name)) mcl_death_messages.player_damage(player, S("@1 starved to death.", name))
end end
player:set_hp(hp-1) mcl_util.deal_damage(player, 1, {type = "starve"})
end end
end end
end end