--- a/share/hedgewars/Data/Maps/ClimbHome/map.lua Mon Jan 14 06:17:35 2019 +0100
+++ b/share/hedgewars/Data/Maps/ClimbHome/map.lua Mon Jan 14 07:14:18 2019 +0100
@@ -448,8 +448,8 @@
updateChallengeRecord("TimeRecord", rawFinishTime, false)
SendStat(siCustomAchievement, string.format(loc("%s bravely climbed up to a dizzy height of %d to reach home."), GetHogName(CurrentHedgehog), getActualHeight(RecordHeight)))
updateChallengeRecord("Highscore", getActualHeight(RecordHeight))
- SendStat(siPointType, loc("seconds"))
- SendStat(siPlayerKills, tostring(roundedFinishTime), GetHogTeamName(CurrentHedgehog))
+ SendStat(siPointType, "!TIME")
+ SendStat(siPlayerKills, tostring(rawFinishTime), GetHogTeamName(CurrentHedgehog))
EndGame()
onAchievementsDeclaration()
@@ -693,7 +693,7 @@
end
updateChallengeRecord("Highscore", actualHeight)
- SendStat(siPointType, loc("points"))
+ SendStat(siPointType, "!POINTS")
SendStat(siPlayerKills, actualHeight, GetHogTeamName(CurrentHedgehog))
EndGame()
onAchievementsDeclaration()
@@ -749,7 +749,7 @@
end
checkAwards()
for i = #ranking, 1, -1 do
- SendStat(siPointType, loc("points"))
+ SendStat(siPointType, "!POINTS")
SendStat(siPlayerKills, tostring(ranking[i].score), ranking[i].name)
end
end