ASA, ice02: Change time strings for consistency with other time strings
authorWuzzy <Wuzzy2@mail.ru>
Sat, 06 Oct 2018 02:27:33 +0200
changeset 13873 4608300bc2fc
parent 13872 65fe3933b19d
child 13874 b74274d6ee6a
ASA, ice02: Change time strings for consistency with other time strings
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