Skip to content

Commit

Permalink
fix: Update settings on go
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy-Vidaurri committed Oct 13, 2024
1 parent 5c26058 commit cae133d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Randomizer/Builder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public void Go(RandoSettings settings)
if (Status > BuilderStatus.WaitingForThread) return;
Status = BuilderStatus.WaitingForThread;
}
this.settings = settings.Copy();
this.settings = settings;
worker = new Thread(BackgroundThreadMain) { IsBackground = true };
worker.Start();
}
Expand Down

0 comments on commit cae133d

Please sign in to comment.