share/hedgewars/Data/Scripts/SpeedShoppa.lua
changeset 14578 50f511588635
parent 14480 208359558642
child 14760 75bd27700837
--- a/share/hedgewars/Data/Scripts/SpeedShoppa.lua	Mon Jan 14 06:17:35 2019 +0100
+++ b/share/hedgewars/Data/Scripts/SpeedShoppa.lua	Mon Jan 14 07:14:18 2019 +0100
@@ -163,7 +163,7 @@
 				SetState(playerHog, band(GetState(playerHog), bnot(gstHHDriven)))
 				AddCaption(loc("Challenge completed!"))
 				SendStat(siGameResult, loc("Challenge completed!"))
-				SendStat(siPointType, loc("milliseconds"))
+				SendStat(siPointType, "!TIME")
 				local time = startTime - endTime
 				SendStat(siPlayerKills, tostring(time), GetHogTeamName(playerHog))
 				SendStat(siCustomAchievement, string.format(loc("You have finished the challenge in %.3f s."), (time/1000)))
@@ -171,7 +171,7 @@
 				updateChallengeRecord("TimeRecord", time)
 			else
 				SendStat(siGameResult, loc("Challenge failed!"))
-				SendStat(siPointType, loc("crate(s)"))
+				SendStat(siPointType, "!CRATES")
 				SendStat(siPlayerKills, tostring(cratesCollected), GetHogTeamName(playerHog))
 				SendStat(siCustomAchievement, string.format(loc("You have collected %d out of %d crate(s)."), cratesCollected, #crates))
 			end