Add "the" to the "you were moved to xyz" message

This commit is contained in:
heinrich5991 2019-03-18 19:38:04 +01:00
parent e7f764383a
commit e5e8eb0840

View file

@ -583,10 +583,10 @@ void CGameClient::OnMessage(int MsgId, CUnpacker *pUnpacker)
const char *pMsg;
switch(GetStrTeam(aParaI[0], TeamPlay))
{
case STR_TEAM_GAME: pMsg = Localize("You were moved to game due to team balancing"); break;
case STR_TEAM_RED: pMsg = Localize("You were moved to red team due to team balancing"); break;
case STR_TEAM_BLUE: pMsg = Localize("You were moved to blue team due to team balancing"); break;
case STR_TEAM_SPECTATORS: pMsg = Localize("You were moved to spectators due to team balancing"); break;
case STR_TEAM_GAME: pMsg = Localize("You were moved to the game due to team balancing"); break;
case STR_TEAM_RED: pMsg = Localize("You were moved to the red team due to team balancing"); break;
case STR_TEAM_BLUE: pMsg = Localize("You were moved to the blue team due to team balancing"); break;
case STR_TEAM_SPECTATORS: pMsg = Localize("You were moved to the spectators due to team balancing"); break;
}
m_pBroadcast->DoBroadcast(pMsg);
}