Skip to content

Commit

Permalink
Fix bug when updating seed orderings
Browse files Browse the repository at this point in the history
  • Loading branch information
Drarig29 committed Aug 7, 2023
1 parent 898db07 commit 3083119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/stage/creator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class StageCreator {
this.storage = storage;
this.stage = stage;
this.stage.settings = this.stage.settings || {};
this.seedOrdering = this.stage.settings.seedOrdering || [];
this.seedOrdering = [...this.stage.settings.seedOrdering || []];
this.updateMode = false;
this.enableByesInUpdate = false;

Expand Down

0 comments on commit 3083119

Please sign in to comment.