This commit is contained in:
2025-07-10 18:52:06 +09:00
parent 9bc6e1f409
commit 5d5808524f

View File

@@ -324,12 +324,11 @@ if (settings.startup['PHI-MI'].value and settings.startup['PHI-MI-GENERIC'].valu
table.insert(s, { table.insert(s, {
type = 'virtual-signal', type = 'virtual-signal',
name = 'signal-' .. v.name, name = 'signal-' .. v.name,
icon = (v.icon and v.icon) or nil, icon = (v.icon and v.icon) or (v.icons and v.icons[1].icon),
icons = (v.icons and v.icons) or nil, icon_size = (v.icon_size and v.icon_size) or 64,
icon_size = (v.icon_size and v.icon_size) or nil,
subgroup = 'pictographs', subgroup = 'pictographs',
order = 'z[tech]-[' .. v.name .. ']', order = 'z[tech]-[' .. v.name .. ']',
localised_name = {'', v.localised_name} localised_name = {'technology-name.' .. v.name}
}) })
end end
end end