External Rocket Parts


Rocket parts are now made in an assembler. Also adds several other options to change how rocket parts and rockets are made.

Content
11 days ago
2.0
706
Manufacturing

g Add a check condition for a planet

12 days ago
(updated 12 days ago)

Hi!
Thanks for the mod!
There's a small problem, it's described here: https://mods.factorio.com/mod/LiquidRocketFuel/discussion/6951dbf28f410663227deec6
Please make a change to the code to avoid the error.
Only in your mod is the code in the "functions.lua" file, line 89. Here is the full "edited" version:

function find_planets_missing_rocket_parts()
    if settings.startup["external-rocket-parts-diversity-setting"].value ~= "none" then
        planet_list = {}
        for _, planet in pairs(data.raw["planet"]) do
            if not data.raw["planet"][planet.name].hidden then
                if data.raw.recipe["rocket-part-ext-" .. planet.name] == nil then
                    table.insert(planet_list, planet.name)
                end
            end
        end
        return planet_list
    end
end
11 days ago

thanks for this fix, added it to the latest version

New response