summaryrefslogtreecommitdiffstats
path: root/src/Server.cpp
diff options
context:
space:
mode:
authorVincent <vincent.leung60@gmail.com>2014-11-29 20:22:03 +0100
committerVincent <vincent.leung60@gmail.com>2014-11-29 20:22:03 +0100
commita7bf2725c8bd5f8ec3e03584af87a7055cb15a60 (patch)
treebc377133bef0483cadea4a211ee2e541222dcd58 /src/Server.cpp
parentissue 1253 - prevent multiple logins with same username (diff)
downloadcuberite-a7bf2725c8bd5f8ec3e03584af87a7055cb15a60.tar
cuberite-a7bf2725c8bd5f8ec3e03584af87a7055cb15a60.tar.gz
cuberite-a7bf2725c8bd5f8ec3e03584af87a7055cb15a60.tar.bz2
cuberite-a7bf2725c8bd5f8ec3e03584af87a7055cb15a60.tar.lz
cuberite-a7bf2725c8bd5f8ec3e03584af87a7055cb15a60.tar.xz
cuberite-a7bf2725c8bd5f8ec3e03584af87a7055cb15a60.tar.zst
cuberite-a7bf2725c8bd5f8ec3e03584af87a7055cb15a60.zip
Diffstat (limited to '')
-rw-r--r--src/Server.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Server.cpp b/src/Server.cpp
index 157bad43e..ed02500ff 100644
--- a/src/Server.cpp
+++ b/src/Server.cpp
@@ -304,13 +304,13 @@ int cServer::GetNumPlayers(void) const
-std::list<std::string> cServer::GetUsernames()
+std::list<AString> cServer::GetUsernames()
{
- std::list<std::string> usernames;
+ std::list<AString> usernames;
cCSLock Lock(m_CSClients);
for (ClientList::iterator itr = m_Clients.begin(); itr != m_Clients.end(); ++itr)
{
- std::string username = (*itr)->GetUsername();
+ AString username = (*itr)->GetUsername();
usernames.insert(usernames.begin(),username);
}
return usernames;