diff options
author | Mattes D <github@xoft.cz> | 2014-12-11 14:34:09 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-12-11 14:34:09 +0100 |
commit | 33c6ff872e72563b6e888476b66c4e9c19f8c840 (patch) | |
tree | fd77a6a003bdaa837e1ab265f35c82275d13e489 /src/Server.h | |
parent | Merge remote-tracking branch 'planetx/master' (diff) | |
download | cuberite-33c6ff872e72563b6e888476b66c4e9c19f8c840.tar cuberite-33c6ff872e72563b6e888476b66c4e9c19f8c840.tar.gz cuberite-33c6ff872e72563b6e888476b66c4e9c19f8c840.tar.bz2 cuberite-33c6ff872e72563b6e888476b66c4e9c19f8c840.tar.lz cuberite-33c6ff872e72563b6e888476b66c4e9c19f8c840.tar.xz cuberite-33c6ff872e72563b6e888476b66c4e9c19f8c840.tar.zst cuberite-33c6ff872e72563b6e888476b66c4e9c19f8c840.zip |
Diffstat (limited to 'src/Server.h')
-rw-r--r-- | src/Server.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Server.h b/src/Server.h index 39a5a1a71..aab47987f 100644 --- a/src/Server.h +++ b/src/Server.h @@ -71,7 +71,7 @@ public: // tolua_export Returns true is Player is found in queue. */ bool IsPlayerInQueue(AString a_Username); - /** Can login more than once with same username. + /** Can login more than once with same username. Returns false if it is not allowed, true otherwise. */ bool DoesAllowMultiLogin(void) { return m_bAllowMultiLogin; } @@ -225,7 +225,7 @@ private: bool m_bIsHardcore; /** True - allow same username to login more than once False - only once */ - bool m_bAllowMultiLogin; + bool m_bAllowMultiLogin; cTickThread m_TickThread; cEvent m_RestartEvent; |