diff --git a/PHI-CL/data.lua b/PHI-CL/data.lua index 530730a..b36712d 100644 --- a/PHI-CL/data.lua +++ b/PHI-CL/data.lua @@ -324,10 +324,12 @@ if (settings.startup['PHI-MI'].value and settings.startup['PHI-MI-GENERIC'].valu table.insert(s, { type = 'virtual-signal', name = 'signal-' .. v.name, - icon = (v.icon and v.icon) or (v.icons and v.icons[1].icon), + icon = (v.icon and v.icon) or nil, + icons = (v.icons and v.icons) or nil, + icon_size = (v.icon_size and v.icon_size) or nil, subgroup = 'pictographs', order = 'z[tech]-[' .. v.name .. ']', - localised_name = {'technology-name.' .. v.name} + localised_name = {'', v.localised_name} }) end end