Skip to content

Commit

Permalink
correct space order
Browse files Browse the repository at this point in the history
  • Loading branch information
tritonas00 committed Feb 17, 2021
1 parent f825279 commit 21870d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/main/network/Network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,9 @@ void Network::RecvThread()
Str<300> text;
if (user_info.authstatus != 0) // Show nothing for guests (no special authorization)
{
text << "(" << UserAuthToStringShort(user_info) << ")";
text << "(" << UserAuthToStringShort(user_info) << ") ";
}
text << _L(" joined the game");
text << _L("joined the game");

// NB: Console is threadsafe
App::GetConsole()->putNetMessage(
Expand Down

0 comments on commit 21870d0

Please # to comment.