Hey Darkcyde, while testing I think I found a mission type that your mission store doesn't like... permit acquisition missions (the kind that some factions give when you become allied and are completed instantly once you select them).
These instantly completing permit acquisition missions should probably be ignored by the mission store.
Here's the relevant journal entry:
{ "timestamp":"2017-06-29T03:00:41Z", "event":"MissionAccepted", "Faction":"Hodack Prison Colony", "Name":"MISSION_genericPermit1", "Influence":"None", "Reputation":"None", "MissionID":158271736 }
Hi Tkael,
Thanks for that. I've made a slight modification that should handle that. In MissionStoreAdd change:
Code:
{if state.eddi_context_missions_accepted < 20:
to
Code:
{if state.eddi_context_missions_accepted < 20 && type != "Permit Aquisition mission":
Hopefully that will fix it!
-=] Darkcyde [=-
EDIT: Updated code for Permit Acquisition mission detection.
Last edited: