server to print version in chat
parent
6edb8c567c
commit
ab51298a0d
|
@ -3846,8 +3846,10 @@ std::wstring Server::getStatusString()
|
||||||
{
|
{
|
||||||
std::wostringstream os(std::ios_base::binary);
|
std::wostringstream os(std::ios_base::binary);
|
||||||
os<<L"# Server: ";
|
os<<L"# Server: ";
|
||||||
|
// Version
|
||||||
|
os<<L"version="<<narrow_to_wide(VERSION_STRING);
|
||||||
// Uptime
|
// Uptime
|
||||||
os<<L"uptime="<<m_uptime.get();
|
os<<L", uptime="<<m_uptime.get();
|
||||||
// Information about clients
|
// Information about clients
|
||||||
os<<L", clients={";
|
os<<L", clients={";
|
||||||
for(core::map<u16, RemoteClient*>::Iterator
|
for(core::map<u16, RemoteClient*>::Iterator
|
||||||
|
|
Loading…
Reference in New Issue