diff options
author | Mattes D <github@xoft.cz> | 2014-04-15 08:16:16 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-04-15 08:16:16 +0200 |
commit | 112dd2c5ec60b55807f73ada7057488a98e769a5 (patch) | |
tree | 7fe960574b01b1bc1b76327a3f163fd2f69d06ce /src/Root.cpp | |
parent | ProtoProxy: Fixed weird gcc compilation errors. (diff) | |
parent | Implemented the 1.7.6 protocol and authenticator. (diff) | |
download | cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.tar cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.tar.gz cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.tar.bz2 cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.tar.lz cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.tar.xz cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.tar.zst cuberite-112dd2c5ec60b55807f73ada7057488a98e769a5.zip |
Diffstat (limited to 'src/Root.cpp')
-rw-r--r-- | src/Root.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Root.cpp b/src/Root.cpp index ba4398b35..5d32bdd87 100644 --- a/src/Root.cpp +++ b/src/Root.cpp @@ -499,9 +499,9 @@ void cRoot::KickUser(int a_ClientID, const AString & a_Reason) -void cRoot::AuthenticateUser(int a_ClientID) +void cRoot::AuthenticateUser(int a_ClientID, const AString & a_Name, const AString & a_UUID) { - m_Server->AuthenticateUser(a_ClientID); + m_Server->AuthenticateUser(a_ClientID, a_Name, a_UUID); } |