Fix potential issues

This commit is contained in:
Jean-Patrick Guerrero 2021-06-20 02:06:55 +02:00
parent 3b5c81cb3a
commit f2eb377d96
1 changed files with 5 additions and 3 deletions

View File

@ -2511,7 +2511,7 @@ local function get_inventory_fs(player, data, fs)
local textures = concat(t, ","):gsub("!", ",") local textures = concat(t, ","):gsub("!", ",")
--fs("style[player_model;bgcolor=black]") --fs("style[player_model;bgcolor=black]")
fs("model", 0.2, 0.2, armor_skin and 4 or 3.4, armor_skin and ctn_hgt or 6.1, fs("model", 0.2, 0.2, armor_skin and 4 or 3.4, ctn_hgt,
"player_model", props.mesh, textures, "0,-150", "false", "false", "player_model", props.mesh, textures, "0,-150", "false", "false",
fmt("%u,%u", anim.x, anim.y)) fmt("%u,%u", anim.x, anim.y))
else else
@ -3034,9 +3034,9 @@ end
on_joinplayer(function(player) on_joinplayer(function(player)
local name = player:get_player_name() local name = player:get_player_name()
local info = get_player_info(name) local info = get_player_info and get_player_info(name)
if get_formspec_version(info) < MIN_FORMSPEC_VERSION then if not info or get_formspec_version(info) < MIN_FORMSPEC_VERSION then
if __sfinv then if __sfinv then
sfinv.set_player_inventory_formspec = old_sfinv_fn sfinv.set_player_inventory_formspec = old_sfinv_fn
sfinv.enabled = true sfinv.enabled = true
@ -3050,6 +3050,8 @@ on_joinplayer(function(player)
end end
end end
pdata[name] = nil
return outdated(name) return outdated(name)
end end