Adds a complete new game mechanic: Maintenance! Create a sophisticated spare parts logistics and bring your mall to its absolute limits! UPS-friendly and MP-tested - Now with a fancy GUI!
Tweaks
Mod category: Tweaks
Small changes concerning balance, gameplay, or graphics.
I have patched my own copy of the game by modifying the relevant function to this:
function mm_util.get_maxIconSize(item, defaultSize)
local maxIconSize = defaultSize or item.icon_size or 0
if item.icons ~= nil then
for _, layer in pairs(item.icons) do
if layer.icon_size and layer.icon_size > maxIconSize then
maxIconSize = layer.icon_size
end
end
else
maxIconSize = item.icon_size
end
return maxIconSize
end