Skip to content

Commit 76ff52a

Browse files
committed
Show seconds, not milliseconds
1 parent cd12279 commit 76ff52a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gui/builtinViewColumns/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def __getData(self, stuff):
186186
duration = stuff.getModifiedItemAttr("duration")
187187
if not duration:
188188
return "", None
189-
text = "{0}s".format(formatAmount(duration, 3, 0, 0))
189+
text = "{0}s".format(formatAmount(duration / 1000, 3, 0, 0))
190190
tooltip = "Assault ability duration"
191191
return text, tooltip
192192
elif itemGroup in ("Warp Scrambler", "Warp Core Stabilizer", "Structure Warp Scrambler"):

0 commit comments

Comments
 (0)