Fix potential crash

This commit is contained in:
Jean-Patrick Guerrero 2021-01-10 01:39:51 +01:00
parent efcd3277e6
commit ece5223f24
1 changed files with 2 additions and 1 deletions

View File

@ -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)