https://mods.factorio.com/mod/dark-matter-replicators-R
The first error is it has type "particle" instead of type "optimized-particle". Changed the particle type and it loaded instantly, but icons were badly sized.
Explicitly sized the icons (many in 18 seemed to go to 64x64, not 32x32), but I cannot get the recipe and technology icons to render the same.
In __MOD__/prototypes/repltable/process-actual-creation.lua, the author passes over data, makes the icons, and then re-uses the recipe icons for technology.
I can serpent and see the tables are exactly the same in the recipe and technology:
Code: Select all
8.747 Script @__dark-matter-replicators-18__/prototypes/repltable/process-actual-creation.lua:93: serpent of recipe icon: {
{
icon = "__base__/graphics/icons/iron-ore.png",
icon_size = 64
},
{
icon = "__dark-matter-replicators-18__/graphics/icons/borders/repl-ore.png",
icon_size = 32
}
}
8.747 Script @__dark-matter-replicators-18__/prototypes/repltable/process-actual-creation.lua:131: serpent of tech icons: {
{
icon = "__base__/graphics/icons/iron-ore.png",
icon_size = 64
},
{
icon = "__dark-matter-replicators-18__/graphics/icons/borders/repl-ore.png",
icon_size = 32
}
}
Code: Select all
8.644 Script @__dark-matter-replicators-18__/prototypes/repltable/process-actual-creation.lua:96: serpent of recipe icon: {
{
icon = "__base__/graphics/icons/iron-ore.png",
icon_size = 64
},
{
icon = "__dark-matter-replicators-18__/graphics/icons/borders/repl-ore.png",
icon_size = 32,
scale = 2
}
}
8.644 Script @__dark-matter-replicators-18__/prototypes/repltable/process-actual-creation.lua:134: serpent of tech icons: {
{
icon = "__base__/graphics/icons/iron-ore.png",
icon_size = 64
},
{
icon = "__dark-matter-replicators-18__/graphics/icons/borders/repl-ore.png",
icon_size = 32,
scale = 2
}
}
Mod itself:
https://mods.factorio.com/mod/dark-matt ... icators-18