Add nil check for crash prevention

This commit is contained in:
Lizzy Fleckenstein 2021-04-29 11:17:52 +02:00
parent eae71fdf55
commit 7f29f768da
1 changed files with 4 additions and 0 deletions

View File

@ -532,6 +532,10 @@ function mcl_util.get_object_name(object)
else
local luaentity = object:get_luaentity()
if not luaentity then
return ""
end
return luaentity.nametag and luaentity.nametag ~= "" and luaentity.nametag or luaentity.description or luaentity.name
end
end