recommended and load order independent (+~) dependencies

Place to ask discuss and request the modding support of Factorio. Don't request mods here.
OhSnap
Burner Inserter
Burner Inserter
Posts: 13
Joined: Sat Sep 06, 2025 6:47 pm
Contact:

recommended and load order independent (+~) dependencies

Post by OhSnap »

Since we now have recommended dependencies it would be great if there is a way to have an option to make them load order independent. Right now those are exclusive options.
Given mod a and an optional addon a++, it would be great if a could recommend a++, but since a++ is an extension, it wants to run after a. The alternative would be to merge them and add a setting to enable a++, but then handling required dependencies of a++ becomes a mess.

current: a++ must run before a

Code: Select all

mod a:
  dependencies: { "+ a++" } -- recommend a++, force a++ to run first
  
mod a++:
  dependencies: { "~ a" } -- does not work without a
wanted: a++ runs after a

Code: Select all

mod a:
  dependencies: { "+~ a++" } -- recommend, but don't modify load order
  
mod a++:
  dependencies: { "a" } -- does not work without a, forces a to run first
Post Reply

Return to “Modding interface requests”