Skip to content

Commit

Permalink
Fixed the miscalculation on JA % when writing the parser log file
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyazasu committed Jan 13, 2018
1 parent 9013db0 commit 688fd8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OverParse/Combatant.cs
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ private string GetJAPercent()
// Returns the Just Attack Percentage in "00.00"
private string GetWJAPercent()
{
return ((Attacks.Average(a => a.JA)) * 100).ToString("00.00");
return ((Attacks.Where(a => !MainWindow.ignoreskill.Contains(a.ID)).Average(x => x.JA)) * 100).ToString("00.00");
}

// Returns the Critical Rate Percentange
Expand Down

0 comments on commit 688fd8e

Please sign in to comment.