From 393255c1c0020f401054422abcd96d7e20884072 Mon Sep 17 00:00:00 2001 From: cadon Date: Wed, 20 Nov 2024 00:18:01 +0100 Subject: [PATCH] UI feedback if allow speed level is possibly set incorrectly in some cases --- ARKBreedingStats/Form1.extractor.cs | 5 +++++ 1 file changed, 5 insertions(+) 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)