Skip to content

Commit

Permalink
critical fix that deleted all wild levels when using the breeding-pla…
Browse files Browse the repository at this point in the history
…nner.
  • Loading branch information
cadaei committed Apr 15, 2018
1 parent af95f23 commit 40cd0be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ARKBreedingStats/BreedingPlan.cs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ private void AsyncCalculateBreedingScoresAndDisplayPairs(BreedingMode breedingMo
for (int s = 0; s < 7; s++)
{
if (c.levelsWild[s] > topStats[s])
c.levelsWild[s] = topStats[s];
topStats[s] = c.levelsWild[s];
}
}

Expand Down

0 comments on commit 40cd0be

Please sign in to comment.