Skip to content

Commit

Permalink
Fixed text error
Browse files Browse the repository at this point in the history
  • Loading branch information
yvt committed Feb 14, 2014
1 parent c02302b commit e481553
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Client/Client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3295,8 +3295,8 @@ namespace spades {
}

{
std::string holderName = msg = p->GetName();
std::string otherTeamName = msg += world->GetTeam(1 - p->GetTeamId()).name;
std::string holderName = p->GetName();
std::string otherTeamName = world->GetTeam(1 - p->GetTeamId()).name;
msg = _Tr("Client", "{0} picked up {1}'s Intel.", holderName, otherTeamName);
NetLog("%s", msg.c_str());
centerMessageView->AddMessage(msg);
Expand Down

0 comments on commit e481553

Please sign in to comment.