mirror of
https://github.com/minetest-mods/i3.git
synced 2024-12-27 03:10:39 +01:00
Fix potential crash
This commit is contained in:
parent
efcd3277e6
commit
ece5223f24
3
init.lua
3
init.lua
@ -2333,8 +2333,9 @@ end)
|
|||||||
core.register_on_player_hpchange(function(player, hpchange)
|
core.register_on_player_hpchange(function(player, hpchange)
|
||||||
local name = player:get_player_name()
|
local name = player:get_player_name()
|
||||||
local data = pdata[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)
|
data.hp = min(hp_max, player:get_hp() + hpchange)
|
||||||
|
|
||||||
set_fs(player)
|
set_fs(player)
|
||||||
|
Loading…
Reference in New Issue
Block a user