Skip to content

Commit

Permalink
fix: Update settings on go (rhelmot#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy-Vidaurri committed Jan 24, 2025
1 parent ea0d3d9 commit f854262
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 f854262

Please sign in to comment.