mirror of
https://github.com/luanti-org/luanti.git
synced 2025-11-27 11:25:24 +01:00
Add space between client names in status text (client)
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}
This commit is contained in:
committed by
Craig Robbins
parent
535c473103
commit
5ffddc94c0
@@ -4468,7 +4468,7 @@ std::wstring Server::getStatusString()
|
|||||||
name = narrow_to_wide(player->getName());
|
name = narrow_to_wide(player->getName());
|
||||||
// Add name to information string
|
// Add name to information string
|
||||||
if(!first)
|
if(!first)
|
||||||
os<<L",";
|
os<<L", ";
|
||||||
else
|
else
|
||||||
first = false;
|
first = false;
|
||||||
os<<name;
|
os<<name;
|
||||||
|
|||||||
Reference in New Issue
Block a user