Fix incorrect message in ASA death01
authorWuzzy <Wuzzy2@mail.ru>
Fri, 14 Dec 2018 01:03:35 +0100
changeset 14442 448213112508
parent 14441 23326691af27
child 14443 6b1fe6d0a26b
Fix incorrect message in ASA death01
share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/death01.lua
--- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/death01.lua	Fri Dec 14 00:50:03 2018 +0100
+++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/death01.lua	Fri Dec 14 01:03:35 2018 +0100
@@ -143,6 +143,8 @@
 end
 
 function onGameStart()
+	ShowMission(unpack(goals[dialog01]))
+	HideMission()
 	AnimWait(hero.gear, 3000)
 	FollowGear(hero.gear)
 
@@ -273,7 +275,7 @@
 
 function heroDeath(gear)
 	SendStat(siGameResult, loc("Hog Solo lost, try again!"))
-	SendStat(siCustomAchievement, loc("To win the game you have to eliminate all your enemies."))
+	SendStat(siCustomAchievement, loc("To win the game you have to eliminate Professor Hogevil."))
 	sendSimpleTeamRankings({teamC.name, teamA.name, teamB.name})
 	EndGame()
 end