fauxnik / dv-rolling-stock-ownership

A Derail Valley mod that introduces a game mechanic of purchasing and managing rolling stock.
MIT License
5 stars 4 forks source link

Parallel job generation causes wagons to be assigned to multiple jobs #78

Open fauxnik opened 3 months ago

fauxnik commented 3 months ago

Triggering job generation via Comms Radio causes job generation to happen in parallel when multiple stations are listed. This happens for stations that are located close together, like Machine Factory and Machine Factory Military Base. When this occurs, each involved wagon ends up being assigned to multiple jobs because the check for job assignment only happens at the beginning of the process.

fauxnik commented 3 months ago

Perhaps this could be solved by placing a mutex lock around the job generation algorithm?