Import planet decided for entire logistics group?

Post your ideas and suggestions how to improve the game.

Moderator: ickputzdirwech

User avatar
Clair
Burner Inserter
Burner Inserter
Posts: 14
Joined: Sun Mar 24, 2019 1:50 am
Contact:

Import planet decided for entire logistics group?

Post by Clair »

TL;DR + What?
Could the import planet be set for an entire logistic group, instead of per-item? It'd make it easier to think about, set, and see in the GUI.
Why?
Currently, the "import planet" option resets to a default for that specific item, when you change the item or quality. This is hard to catch visually since all the planet icons are round and have similar textures. It's also not obvious when this is set incorrectly in the logistics GUI, as it just grays it out only when it's at the planet with the item. Having the import planet be set for the entire logistics group would reduce clicking, make the import planet more obvious, and matches how players engage with logistics groups.

Also... having an option be reset in the same dialog is like, the most annoying thing lol.
factorio_2024-11-25_21-49-32.gif
factorio_2024-11-25_21-49-32.gif (534.28 KiB) Viewed 374 times
To put it in programmer terms, I think this feels better:

Code: Select all

if(planet == nauvis){
    get(rocks);
    get(bricks);
    get(recyclers);
}
if(planet == fuldora){
    get(radars);
}
vs the current:

Code: Select all

if(planet == nauvis) 
    get(rocks);
if(planet == nauvis) 
    get(bricks);
if(planet == fuldora) // oops wrong planet
    get(recyclers);
if(planet == nauvis) // oops x2 this should be fuldora
    get(radars);
Post Reply

Return to “Ideas and Suggestions”