Fix potential crash

This commit is contained in:
Jean-Patrick Guerrero 2021-01-25 00:38:57 +01:00
parent 9bc190443c
commit 8f58e3fda2
1 changed files with 2 additions and 1 deletions

View File

@ -2032,8 +2032,9 @@ end
function i3.set_fs(player)
local name = player:get_player_name()
local data = pdata[name]
local fs = make_fs(player, data)
if not data then return end
local fs = make_fs(player, data)
player:set_inventory_formspec(fs)
end