diff options
author | daniel0916 <theschokolps@gmail.com> | 2014-04-13 13:04:56 +0200 |
---|---|---|
committer | daniel0916 <theschokolps@gmail.com> | 2014-04-13 13:04:56 +0200 |
commit | b506a7407661c0527255466cf8b315824b0003c0 (patch) | |
tree | c1a08a8c495fdd9e25fbcabbc5c072efb5470798 /src/Root.cpp | |
parent | Updated the NetherFort prefabs to current Gallery contents. (diff) | |
download | cuberite-b506a7407661c0527255466cf8b315824b0003c0.tar cuberite-b506a7407661c0527255466cf8b315824b0003c0.tar.gz cuberite-b506a7407661c0527255466cf8b315824b0003c0.tar.bz2 cuberite-b506a7407661c0527255466cf8b315824b0003c0.tar.lz cuberite-b506a7407661c0527255466cf8b315824b0003c0.tar.xz cuberite-b506a7407661c0527255466cf8b315824b0003c0.tar.zst cuberite-b506a7407661c0527255466cf8b315824b0003c0.zip |
Diffstat (limited to '')
-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); } |