Rename Win -> MissionAccomplished and Lose -> MissionFailed

But keep them in notifications.yaml for backwards compatibility.
This commit is contained in:
abcdefg30
2015-01-06 12:09:25 +01:00
parent 4a1e0a44d5
commit d9572d4ca4
8 changed files with 16 additions and 14 deletions

View File

@@ -21,11 +21,11 @@ RunInitialActivities = function()
end
MissionAccomplished = function()
Media.PlaySpeechNotification(player, "Win")
Media.PlaySpeechNotification(player, "MissionAccomplished")
end
MissionFailed = function()
Media.PlaySpeechNotification(player, "Lose")
Media.PlaySpeechNotification(player, "MissionFailed")
end
Tick = function()