This commit is contained in:
Shaun Bennett 2014-10-02 20:25:50 -05:00
parent 825f08b6a7
commit 4253c08682
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ public enum AchievementCategory
String statString = C.cWhite + statNumber;
// Need to display special for time
if (_statsToDisplay[i].equalsIgnoreCase("TimeInGame"))
statString = C.cWhite + UtilTime.convertString(statNumber, 0, UtilTime.TimeUnit.SECONDS);
statString = C.cWhite + UtilTime.convertString(statNumber * 1000L, 0, UtilTime.TimeUnit.FIT);
lore.add(C.cYellow + _friendlyStatNames[i] + ": " + statString);
}