mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-04-05 05:41:28 +02:00
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:
@ -60,6 +60,9 @@ minetest.register_on_joinplayer(function(player)
|
||||
storage = minetest.deserialize(burn_data)
|
||||
end
|
||||
mcl_burning.storage[player] = storage
|
||||
if storage.burn_time and storage.burn_time > 0 then
|
||||
mcl_burning.update_hud(player)
|
||||
end
|
||||
end)
|
||||
|
||||
local function on_leaveplayer(player)
|
||||
|
Reference in New Issue
Block a user