I noticed that many people are having the same type of error as mine, I checked the mod files in their .zip
in the data.lua file, I simply remove the bottom area from the catches
- Allow productivity modules in the specialized refineries by adding the recipies as intermediate products
for i, module in pairs (data.raw.module) of
if module.effect.productivity then
table.insert (module.limitation, "specialized-refining-petroleum");
table.insert (module.limitation, "specialized-refining-light-oil");
table.insert (module.limitation, "specialized-refining-heavy-oil");
if not module.limitation_message_key then
module.limitation_message_key = "production-module-usable-only-on-intermediates"
end
end
end
and hear no more crash;
I hope I have helped you to make your mod better.