Skip to content

Commit

Permalink
fix for the extraction of highlevel bred creatures.
Browse files Browse the repository at this point in the history
  • Loading branch information
cadon committed May 2, 2016
1 parent c95efed commit 7f8e888
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions ARKBreedingStats/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,17 +209,17 @@ private void Form1_Load(object sender, EventArgs e)
checkForUpdates(true);

//// TODO remove debug-numbers
//statIOs[0].Input = 3922.4;
//statIOs[1].Input = 847;
//statIOs[2].Input = 726;
//statIOs[3].Input = 16262.4;
//statIOs[4].Input = 458.8;
//statIOs[5].Input = 2.39;
//statIOs[6].Input = 1.95;
//statIOs[7].Input = 2537.3;
//comboBoxSpeciesExtractor.SelectedIndex = 1;
//statIOs[0].Input = 2774.1;
//statIOs[1].Input = 3075;
//statIOs[2].Input = 615;
//statIOs[3].Input = 9200;
//statIOs[4].Input = 483;
//statIOs[5].Input = 3.375;
//statIOs[6].Input = 1;
//statIOs[7].Input = 8268.5;
//comboBoxSpeciesExtractor.SelectedIndex = 3;
//tabControl1.SelectedTab = tabPageExtractor;
//numericUpDownLevel.Value = 169;
//numericUpDownLevel.Value = 214;
}

private void clearAll()
Expand Down Expand Up @@ -364,7 +364,7 @@ private void buttonExtract_Click(object sender, EventArgs e)
}

// remove all results that require a total wild-level higher than the max
if (extractionResults.levelWildFromTorporRange[0] > creatureCollection.maxWildLevel)
if (!checkBoxAlreadyBred.Checked && extractionResults.levelWildFromTorporRange[0] > creatureCollection.maxWildLevel)
{
double minTE = 2d * (extractionResults.levelWildFromTorporRange[0] - creatureCollection.maxWildLevel) / creatureCollection.maxWildLevel;
for (int s = 0; s < 8; s++)
Expand Down

0 comments on commit 7f8e888

Please sign in to comment.