1
0
mirror of https://github.com/minetest-mods/i3.git synced 2025-06-08 05:10:30 +02:00

Fix potential crash

This commit is contained in:
Jean-Patrick Guerrero 2021-01-10 01:39:51 +01:00
parent efcd3277e6
commit ece5223f24

@ -2333,8 +2333,9 @@ end)
core.register_on_player_hpchange(function(player, hpchange)
local name = player:get_player_name()
local data = pdata[name]
local hp_max = player:get_properties().hp_max
if not data then return end
local hp_max = player:get_properties().hp_max
data.hp = min(hp_max, player:get_hp() + hpchange)
set_fs(player)