diff -r 221380cdee7e -r 50f511588635 share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/moon02.lua --- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/moon02.lua Mon Jan 14 06:17:35 2019 +0100 +++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/moon02.lua Mon Jan 14 07:14:18 2019 +0100 @@ -278,18 +278,19 @@ SendStat(siCustomAchievement, loc("The time that you have left when you reach the blue hedgehog will be added to the next turn.")) SendStat(siCustomAchievement, loc("Each turn you'll have only one rope to use.")) SendStat(siCustomAchievement, loc("You'll lose if you die or if your time is up.")) - SendStat(siPointType, loc("milliseconds")) + SendStat(siPointType, "!TIME") SendStat(siPlayerKills, tostring(runnerTimeTotal), teamB.name) - SendStat(siPlayerKills, tostring(GetTeamStats(teamA.name).Kills), teamA.name) + SendStat(siPointType, "!EMPTY") + SendStat(siPlayerKills, "0", teamA.name) EndGame() end function win() SendStat(siGameResult, loc("Congratulations, you are the fastest!")) -- siCustomAchievements were added earlier - SendStat(siPointType, loc("milliseconds")) + SendStat(siPointType, "!TIME") SendStat(siPlayerKills, tostring(winningTime), teamA.name) - SendStat(siPointType, loc("milliseconds")) + SendStat(siPointType, "!TIME") SendStat(siPlayerKills, tostring(runnerTimeTotal), teamB.name) SaveCampaignVar("Mission13Won", "true") checkAllMissionsCompleted()