diff --git a/ARKBreedingStats/Form1.extractor.cs b/ARKBreedingStats/Form1.extractor.cs index 50b6a2e2..6110bcdc 100644 --- a/ARKBreedingStats/Form1.extractor.cs +++ b/ARKBreedingStats/Form1.extractor.cs @@ -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)