Skip to content

Commit

Permalink
fix for extraction. tab-order-fix for stat-multipliers.
Browse files Browse the repository at this point in the history
  • Loading branch information
cadaei committed Mar 12, 2018
1 parent 2755eef commit 5850eaf
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ARKBreedingStats/Extraction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ public void extractLevels(int speciesI, int level, List<StatIO> statIOs, double
{
int postTameLevelMin = (int)Math.Floor((double)wildLevel * (1 + tamingEffectivenessMin / 2));
int postTameLevelMax = (int)Math.Floor((double)wildLevel * (1 + tamingEffectivenessMax / 2));
if (wildLevelSum <= postTameLevelMin && wildLevelSum >= postTameLevelMax)
if (wildLevelSum >= postTameLevelMin && wildLevelSum <= postTameLevelMax)
impossibleTE = false;
}
}
Expand Down
2 changes: 1 addition & 1 deletion ARKBreedingStats/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("0.26.1")]
[assembly: AssemblyFileVersion("0.26.2")]
Loading

0 comments on commit 5850eaf

Please sign in to comment.