Skip to content

Commit

Permalink
fix: Update settings on go (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy-Vidaurri authored Oct 13, 2024
1 parent 5c26058 commit 5023d41
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 5023d41

Please sign in to comment.