# HG changeset patch # User Wuzzy # Date 1538785653 -7200 # Node ID 4608300bc2fcaca68d110921c4d69f90cc9cfd69 # Parent 65fe3933b19d57f717aa1e55128f00882b97fa4f ASA, ice02: Change time strings for consistency with other time strings diff -r 65fe3933b19d -r 4608300bc2fc share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/ice02.lua --- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/ice02.lua Sat Oct 06 01:00:02 2018 +0200 +++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/ice02.lua Sat Oct 06 02:27:33 2018 +0200 @@ -153,7 +153,7 @@ local totalTimePrinted = totalTime / 1000 local saucersLeft = GetAmmoCount(hero.gear, amJetpack) local saucersUsed = totalSaucers - saucersLeft - SetTeamLabel(teamA.name, string.format(loc("%.3f s"), totalTimePrinted)) + SetTeamLabel(teamA.name, string.format(loc("%.3fs"), totalTimePrinted)) SendStat(siGameResult, loc("Hooray! You are a champion!")) SendStat(siCustomAchievement, string.format(loc("You completed the mission in %.3f seconds."), totalTimePrinted)) if timeRecord ~= nil and totalTime >= timeRecord then @@ -184,7 +184,7 @@ if heroTurn and challengeStarted and not gameEnded and not hero.dead and ReadyTimeLeft == 0 then local time = totalTime - TurnTimeLeft local timePrinted = time / 1000 - SetTeamLabel(teamA.name, string.format(loc("%.1f s"), timePrinted)) + SetTeamLabel(teamA.name, string.format(loc("%.1fs"), timePrinted)) end end