KaukausInsurgency / ki-dcs

Kaukasus Insurgency
5 stars 2 forks source link

Player Stats - Glitched out Total Game Time #149

Closed Igneous01 closed 6 years ago

Igneous01 commented 6 years ago

image

Highlighted part - shows a decimal but it should be a time in HH:MM:DD

Igneous01 commented 6 years ago

The issue is in the TimeSpan tostring, which by defaul includes days as dd.HH.MM.SS.ss

to correct this, need to change the string format to:

(int)(t.TotalHours) + ":" + t.ToString(@"mm\:ss")
Igneous01 commented 6 years ago

Confirmed fix in master.

image