Implement starve damage

This commit is contained in:
Elias Fleckenstein 2021-04-14 19:09:46 +02:00
parent a3af1cdf6e
commit 9c75cd1a79
1 changed files with 1 additions and 1 deletions

View File

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