Skip to content

Commit

Permalink
Merge pull request #766 from zymex22/issue600
Browse files Browse the repository at this point in the history
fixed issue where drones would not notice a change to forbidden
  • Loading branch information
Sn1p3rr3c0n authored Feb 23, 2024
2 parents fdad91d + cb158ee commit 163c9eb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Source/ProjectRimFactory/Drones/Building_DroneStation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -503,8 +503,7 @@ public override void Tick()
if (job != null)
{
additionJobSearchTickDelay = 0; //Reset to 0 - found a job -> may find more
job.playerForced = true;
job.expiryInterval = -1;
job.playerForced = true; // Why is that here? (included since the very beginning)
//MakeDrone takes about 1ms

drone.jobs.StartJob(job);
Expand Down

0 comments on commit 163c9eb

Please sign in to comment.