Skip to content

Commit

Permalink
fix for table-export
Browse files Browse the repository at this point in the history
  • Loading branch information
cadon committed Feb 29, 2016
1 parent 36692b3 commit 6599f88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ARKBreedingStats/AboutBox1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public string AssemblyVersion
{
get
{
return "0.16.2";
return "0.16.3";
//return Assembly.GetExecutingAssembly().GetName().Version.ToString();
}
}
Expand Down
2 changes: 1 addition & 1 deletion ARKBreedingStats/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ private void buttonCopyClipboard_Click(object sender, EventArgs e)
}
if (radioButtonOutputTable.Checked)
{
tsv.Add(statNames[s] + "\t" + (activeStats[s] ? statIOs[cC].LevelWild.ToString() : "") + "\t" + (activeStats[s] ? statIOs[cC].LevelWild.ToString() : "") + "\t" + breedingV);
tsv.Add(statNames[s] + "\t" + (activeStats[s] ? statIOs[s].LevelWild.ToString() : "") + "\t" + (activeStats[s] ? statIOs[s].LevelWild.ToString() : "") + "\t" + breedingV);
}
else
{
Expand Down

0 comments on commit 6599f88

Please sign in to comment.