diff options
author | Vincent <vincent.leung60@gmail.com> | 2014-11-30 00:46:31 +0100 |
---|---|---|
committer | Vincent <vincent.leung60@gmail.com> | 2014-11-30 00:46:31 +0100 |
commit | 20dcceb7e6a8810525fd873f29e665759bdde087 (patch) | |
tree | 6db34c5092bfb98df66c41431001d97bb3a66587 /src | |
parent | Uses callback for players already in World. (diff) | |
download | cuberite-20dcceb7e6a8810525fd873f29e665759bdde087.tar cuberite-20dcceb7e6a8810525fd873f29e665759bdde087.tar.gz cuberite-20dcceb7e6a8810525fd873f29e665759bdde087.tar.bz2 cuberite-20dcceb7e6a8810525fd873f29e665759bdde087.tar.lz cuberite-20dcceb7e6a8810525fd873f29e665759bdde087.tar.xz cuberite-20dcceb7e6a8810525fd873f29e665759bdde087.tar.zst cuberite-20dcceb7e6a8810525fd873f29e665759bdde087.zip |
Diffstat (limited to '')
-rw-r--r-- | src/World.cpp | 15 | ||||
-rw-r--r-- | src/World.h | 3 |
2 files changed, 0 insertions, 18 deletions
diff --git a/src/World.cpp b/src/World.cpp index e6a2f161a..100df5742 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -3667,18 +3667,3 @@ void cWorld::cChunkGeneratorCallbacks::CallHookChunkGenerated (cChunkDesc & a_Ch -std::list<AString> cWorld::GetUsernames() -{ - std::list<AString> usernames; - cCSLock Lock(m_CSPlayers); - for (cPlayerList::iterator itr = m_Players.begin(); itr != m_Players.end(); ++itr) - { - AString username = (*itr)->GetName(); - usernames.insert(usernames.begin(),username); - } - return usernames; -} - - - - diff --git a/src/World.h b/src/World.h index a3ad4d1da..ee9b93874 100644 --- a/src/World.h +++ b/src/World.h @@ -807,9 +807,6 @@ public: This function allows nesting and task-concurrency (multiple separate tasks can request ticking and as long as at least one requests is active the chunk will be ticked). */ void SetChunkAlwaysTicked(int a_ChunkX, int a_ChunkZ, bool a_AlwaysTicked = true); // tolua_export - - /** Get the usernames from the World. */ - std::list<AString> GetUsernames(void); private: |