Skip to content

Commit

Permalink
Added partial completion state for bees
Browse files Browse the repository at this point in the history
  • Loading branch information
DarwinBaker committed Jun 27, 2023
1 parent d740f8a commit 964f06a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion AATool/Data/Objectives/Complex/Bees.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,9 @@ protected override void UpdateAdvancedState(ProgressState progress)

this.BuildRemainingObjectiveList();

this.CompletionOverride = this.doneWithBees = !this.remainingObjectives.Any();
this.doneWithBees = !this.remainingObjectives.Any();
this.Partial = !this.doneWithBees;
this.CompletionOverride = this.doneWithBees || this.estimatedPlaced > 0;
}

private void BuildRemainingObjectiveList()
Expand Down

0 comments on commit 964f06a

Please sign in to comment.