summaryrefslogtreecommitdiffstats
path: root/src/World.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/World.cpp')
-rw-r--r--src/World.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/World.cpp b/src/World.cpp
index 9ae9e41d9..e6a2f161a 100644
--- a/src/World.cpp
+++ b/src/World.cpp
@@ -3667,14 +3667,18 @@ void cWorld::cChunkGeneratorCallbacks::CallHookChunkGenerated (cChunkDesc & a_Ch
-std::list<std::string> cWorld::GetUsernames()
+std::list<AString> cWorld::GetUsernames()
{
- std::list<std::string> usernames;
+ std::list<AString> usernames;
cCSLock Lock(m_CSPlayers);
for (cPlayerList::iterator itr = m_Players.begin(); itr != m_Players.end(); ++itr)
{
- std::string username = (*itr)->GetName();
+ AString username = (*itr)->GetName();
usernames.insert(usernames.begin(),username);
}
return usernames;
}
+
+
+
+