Fix mcl_skins crash

This commit is contained in:
parent c499d20d25
commit a52931f986
1 changed files with 5 additions and 0 deletions

View File

@ -139,6 +139,10 @@ minetest.register_on_joinplayer(function(player)
skin = minetest.deserialize(skin) skin = minetest.deserialize(skin)
end end
if skin then if skin then
-- If the player moves a slider and then quickly exits the game, form_send_job gets saved.
-- This should never have been put in with the skin data in the first place.
skin.form_send_job = nil
mcl_skins.players[player] = skin mcl_skins.players[player] = skin
else else
if math.random() > 0.5 then if math.random() > 0.5 then
@ -424,6 +428,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
-- Cancel formspec resend after scrollbar move -- Cancel formspec resend after scrollbar move
if mcl_skins.players[player].form_send_job then if mcl_skins.players[player].form_send_job then
mcl_skins.players[player].form_send_job:cancel() mcl_skins.players[player].form_send_job:cancel()
mcl_skins.players[player].form_send_job = nil
end end
if fields.quit then if fields.quit then