share/hedgewars/Data/Maps/ClimbHome/map.lua
changeset 12424 b9cc405541c1
parent 12392 78ad1119eb6c
child 12653 1215fd246e08
--- a/share/hedgewars/Data/Maps/ClimbHome/map.lua	Sun May 14 19:08:57 2017 +0200
+++ b/share/hedgewars/Data/Maps/ClimbHome/map.lua	Tue May 16 21:37:46 2017 +0200
@@ -371,10 +371,10 @@
                     SetState(CurrentHedgehog, gstWinner)
                     SendStat(siGameResult, loc("You have beaten the challenge!"))
                     SendStat(siGraphTitle, loc("Your height over time"))
-                    SendStat(siCustomAchievement, string.format(loc("%s reached home in %.3f seconds. Congratulations!"), loc(GetHogName(CurrentHedgehog)), finishTime))
-                    SendStat(siCustomAchievement, string.format(loc("%s bravely climbed up to a dizzy height of %d to reach home."),loc(GetHogName(CurrentHedgehog)), getActualHeight(RecordHeight)))
+                    SendStat(siCustomAchievement, string.format(loc("%s reached home in %.3f seconds. Congratulations!"), GetHogName(CurrentHedgehog), finishTime))
+                    SendStat(siCustomAchievement, string.format(loc("%s bravely climbed up to a dizzy height of %d to reach home."), GetHogName(CurrentHedgehog), getActualHeight(RecordHeight)))
                     SendStat(siPointType, loc("seconds"))
-                    SendStat(siPlayerKills, tostring(roundedFinishTime), loc(GetHogTeamName(CurrentHedgehog)))
+                    SendStat(siPlayerKills, tostring(roundedFinishTime), GetHogTeamName(CurrentHedgehog))
 
                     EndGame()
                     onAchievementsDeclaration()
@@ -591,7 +591,7 @@
         SendStat(siCustomAchievement, string.format(text, RecordHeightHogName))
     end
     SendStat(siPointType, loc("points"))
-    SendStat(siPlayerKills, actualHeight, loc(GetHogTeamName(CurrentHedgehog)))
+    SendStat(siPlayerKills, actualHeight, GetHogTeamName(CurrentHedgehog))
     EndGame()
     onAchievementsDeclaration()
 end