diff options
author | madmaxoft <github@xoft.cz> | 2014-07-17 10:06:13 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-07-17 10:06:13 +0200 |
commit | e66b81b3951680511f2bfffd12c8f96dbbb5865a (patch) | |
tree | 5a5bcdad7cc8b70b65bc60a1a3d8f6eb7a85501a /src/Root.cpp | |
parent | Merge remote-tracking branch 'origin/master' into potions (diff) | |
parent | Another fix for excessive food drain (diff) | |
download | cuberite-e66b81b3951680511f2bfffd12c8f96dbbb5865a.tar cuberite-e66b81b3951680511f2bfffd12c8f96dbbb5865a.tar.gz cuberite-e66b81b3951680511f2bfffd12c8f96dbbb5865a.tar.bz2 cuberite-e66b81b3951680511f2bfffd12c8f96dbbb5865a.tar.lz cuberite-e66b81b3951680511f2bfffd12c8f96dbbb5865a.tar.xz cuberite-e66b81b3951680511f2bfffd12c8f96dbbb5865a.tar.zst cuberite-e66b81b3951680511f2bfffd12c8f96dbbb5865a.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 c82b05a66..ec1351ef1 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, const AString & a_Name, const AString & a_UUID) +void cRoot::AuthenticateUser(int a_ClientID, const AString & a_Name, const AString & a_UUID, const Json::Value & a_Properties) { - m_Server->AuthenticateUser(a_ClientID, a_Name, a_UUID); + m_Server->AuthenticateUser(a_ClientID, a_Name, a_UUID, a_Properties); } |