Skip to content

Commit

Permalink
Add space between client names in status text (client)
Browse files Browse the repository at this point in the history
Before:
Server: version=0.4.10, uptime=190.5, max_lag=0.001, clients={user1,user2,user3,user4,user5,foobar,userplayedminetestthismorning}

After:
Server: version=0.4.10, uptime=190.5, max_lag=0.001, clients={user1, user2, user3, user4, user5, foobar, userplayedminetestthismorning}
  • Loading branch information
srifqi authored and Zeno- committed Dec 7, 2014
1 parent 535c473 commit 5ffddc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.cpp
Expand Up @@ -4468,7 +4468,7 @@ std::wstring Server::getStatusString()
name = narrow_to_wide(player->getName());
// Add name to information string
if(!first)
os<<L",";
os<<L", ";
else
first = false;
os<<name;
Expand Down

0 comments on commit 5ffddc9

Please sign in to comment.