Skip to content

Commit

Permalink
UI feedback if allow speed level is possibly set incorrectly in some …
Browse files Browse the repository at this point in the history
…cases
  • Loading branch information
cadon committed Nov 19, 2024
1 parent e838195 commit 393255c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ARKBreedingStats/Form1.extractor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,11 @@ private bool ExtractLevels(bool autoExtraction = false, bool statInputsHighPreci
{
possibleExtractionIssues |= IssueNotes.Issue.SinglePlayer;
}
// if the stat is speed, the allowSpeedLeveling could be set incorrectly. For bred creatures that setting affects if speed is changed by imprinting.
if (s == Stats.SpeedMultiplier && rbBredExtractor.Checked && numericUpDownImprintingBonusExtractor.Value > 0)
{
possibleExtractionIssues |= IssueNotes.Issue.SpeedLevelingSetting;
}
}
}
if (!_extractor.ValidResults)
Expand Down

0 comments on commit 393255c

Please sign in to comment.