Hello, your mod planetaris-arig crashes on load if the "Crushed Coal" (crushing-industry-coal) startup setting in the crushing-industry mod is disabled.
Error: Error in assignID: item with name 'crushed-coal' does not exist. Source: planetaris-compression-rocket-fuel (recipe).
Reason: The file compat/crushing-industry.lua unconditionally changes the planetaris-compression-rocket-fuel recipe to use crushed-coal, but it does not check if that setting is enabled in Crushing Industry.
Possible fix: Wrap the recipe modification in compat/crushing-industry.lua in a settings check:
if settings.startup["crushing-industry-coal"] and settings.startup["crushing-industry-coal"].value then
...
end
Thank you!