forked from VoxeLibre/VoxeLibre
Fix fire HUD not showing on join while burning.
* Add the fire HUD to a player who joins the server while still burning from the previous session.
This commit is contained in:
parent
03c5f24649
commit
cff49c015a
|
@ -60,6 +60,9 @@ minetest.register_on_joinplayer(function(player)
|
||||||
storage = minetest.deserialize(burn_data)
|
storage = minetest.deserialize(burn_data)
|
||||||
end
|
end
|
||||||
mcl_burning.storage[player] = storage
|
mcl_burning.storage[player] = storage
|
||||||
|
if storage.burn_time and storage.burn_time > 0 then
|
||||||
|
mcl_burning.update_hud(player)
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
local function on_leaveplayer(player)
|
local function on_leaveplayer(player)
|
||||||
|
|
Loading…
Reference in New Issue