vessel priorities
zer0Kerbal opened this issue ยท 1 comments
vessel priorities (from -20 to 20; higher number > the priority)
this would allow for nearly automated refueling/mining operations - just set the warehouse to -10; the mining/refining to -15 and since default priority would be 0, it would automatically flow uphill - autorefuel. This would add some complexity, but would greatly improve logistics.
suggest four (five) states:
public enum states : byte { error, off, store, pump, pull }; private static readonly string[] STATES_STR = { "ERROR!", "Off", "Produce", "Store", "Pull" }; private static readonly string[] STATES_COLOUR = { "<color=orange>", "<color=black>", "<#ADFF2F>", "<color=yellow>", "<#6495ED>", "<color=red>" };
this would simplify priorities enough where it should have minimal impact on performance.