don't crash if there's no owner

This commit is contained in:
flux 2022-10-10 14:48:33 -07:00
parent 05cd830f98
commit db057f02cf
No known key found for this signature in database
GPG Key ID: 9333B27816848A15
1 changed files with 2 additions and 5 deletions

View File

@ -45,17 +45,14 @@ function api.update(pos, node)
if get_info then
local info = get_info(pos)
if public == 0 then
local owner = meta:get("owner")
meta:set_string("infotext", S("@1 (owned by @2)", info, owner))
local owner = meta:get("owner") or "???"
meta:set_string("infotext", S("@1's private @2", owner, info))
elseif public == 1 then
meta:set_string("infotext", S("protected @1", info))
elseif public == 2 then
meta:set_string("infotext", S("public @1", info))
else
meta:set_string("infotext", "ERROR IN INFOTEXT")
end
else