share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/final.lua
branchspacecampaign
changeset 9642 8a691e0f117a
parent 9634 8032df67a249
child 9758 3b8058b251b8
--- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/final.lua	Thu Sep 19 02:33:23 2013 +0300
+++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/final.lua	Thu Sep 19 03:49:29 2013 +0300
@@ -139,15 +139,15 @@
 -------------- ACTIONS ------------------
 
 function heroDeath(gear)
-	SendStat('siGameResult', loc("Hog Solo lost, try again!")) --1
-	SendStat('siCustomAchievement', loc("You have to destroy all the explosives without dying!")) --11
-	SendStat('siPlayerKills','0',teamA.name)
+	SendStat(siGameResult, loc("Hog Solo lost, try again!"))
+	SendStat(siCustomAchievement, loc("You have to destroy all the explosives without dying!"))
+	SendStat(siPlayerKills,'0',teamA.name)
 	EndGame()
 end
 
 function heroWin(gear)
-	SendStat('siGameResult', loc("Congratulations, you have saved Hogera!")) --1
-	SendStat('siCustomAchievement', loc("Hogera is safe!")) --11
-	SendStat('siPlayerKills','1',teamA.name)
+	SendStat(siGameResult, loc("Congratulations, you have saved Hogera!"))
+	SendStat(siCustomAchievement, loc("Hogera is safe!"))
+	SendStat(siPlayerKills,'1',teamA.name)
 	EndGame()
 end