Skip to content

Commit

Permalink
fix for max wild level when creating test creatures
Browse files Browse the repository at this point in the history
  • Loading branch information
cadon committed Nov 23, 2021
1 parent 3caf68f commit 14e2281
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ARKBreedingStats/library/AddDummyCreaturesSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ private void BtOk_Click(object sender, EventArgs e)
Generations = (int)NudBreedForGenerations.Value,
PairsPerGeneration = (int)NudUsePairsPerGeneration.Value,
ProbabilityHigherStat = (double)NudProbabilityInheritingHigherStat.Value / 100,
RandomMutationChance = (double)NudMutationChance.Value / 100
RandomMutationChance = (double)NudMutationChance.Value / 100,
MaxWildLevel = (int)nudMaxWildLevel.Value
};
}
Close();
Expand Down

0 comments on commit 14e2281

Please sign in to comment.