Hi!
With the mod installed https://mods.factorio.com/mod/aai-loaders-stacking-filtering an error appears:
Error while loading item prototype "aai-loader-stacking" (item): Key "icon" not found in property tree at ROOT.item.aai-loader-stacking.icons[2]
I'm guessing it's because of this entry and the current mod changing some value so that other mods can no longer see the original entry:
function Stacking.attach_icon(item, entity)
table.insert(item.icons, {
icon = data.raw["virtual-signal"]["signal-stack-size"].icon,
icon_size = 64,
scale = 0.5,
shift = { -16, 16 }
})
entity.icons = table.deepcopy(item.icons)
end
I mean, it's possible that other mods that use similar recording options can no longer access the original recording and won't work, even though the error only appeared with this mod.
Could you clarify this point, and maybe make some changes to avoid this option?