Fix message for Challenges.

master
vexed 2013-11-19 01:21:54 -05:00
parent 7827f6bcd4
commit a2b721183d
1 changed files with 8 additions and 1 deletions

View File

@ -3941,7 +3941,14 @@ bool startMultiOptions(bool bReenter)
addConsoleMessage(buf, DEFAULT_JUSTIFY, NOTIFY_MESSAGE);
}
}
ssprintf(buf, _("Press the start hosting button to begin hosting a game."));
if (challengeActive)
{
ssprintf(buf, _("Hit the ready box to begin your challenge!"));
}
else
{
ssprintf(buf, _("Press the start hosting button to begin hosting a game."));
}
addConsoleMessage(buf, DEFAULT_JUSTIFY, NOTIFY_MESSAGE);
}