Content deleted Content added
sync with live |
No edit summary |
||
Line 536:
local system = args[1] or args.system
local line = args[2] or args.line
local
local data = args.data
if system or data then
data = data or getData(system)
local icon
local icon_format
line = (getLine(data, line))
if line then
if
icon =
end
if not (
icon = line['icon']
end
end
icon_format = data['system icon format']
icon = data['system icon']
end
if
if
end
Line 606 ⟶ 608:
end
if args.name and line and line.title then
return icon .. " " .. line.title
end
return icon
end
|