Skip to content

Commit

Permalink
Missing word added for log file total damage
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyazasu committed Apr 16, 2018
1 parent b754278 commit fdf267c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OverParse/Log.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public string WriteLog()
// Logging the total time occured through out the encounter
string totalDamage = combatants.Sum(x => x.Damage).ToString("N0");
string timer = timespan.ToString(@"mm\:ss");
string log = DateTime.Now.ToString("F") + " | " + timer + " | Total MPA Damage : " + totalDamage + Environment.NewLine + Environment.NewLine;
string log = DateTime.Now.ToString("F") + " | " + timer + " | Total Damage : " + totalDamage + " dmg" + Environment.NewLine + Environment.NewLine;

log += "[ Encounter Overview ]" + Environment.NewLine; // Title

Expand Down

0 comments on commit fdf267c

Please sign in to comment.