Merge pull request #11395 from Citadel-Station-13/Ghommie-patch-4

Shuttle timer display seconds fix
This commit is contained in:
kevinz000
2020-03-10 05:56:56 -07:00
committed by GitHub
+1 -1
View File
@@ -660,7 +660,7 @@
if(timeleft > 1 HOURS)
return "--:--"
else if(timeleft > 0)
return "[add_leading(num2text((timeleft / 60) % 60), 2, "0")]:[add_leading(num2text(timeleft % 60), 2, " ")]"
return "[add_leading(num2text((timeleft / 60) % 60), 2, "0")]:[add_leading(num2text(timeleft % 60), 2, "0")]"
else
return "00:00"