diff options
author | madmaxoft <github@xoft.cz> | 2014-07-29 17:45:55 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-07-30 13:56:29 +0200 |
commit | 4dd858f8997488e2252f5a04df9df1654a70d67f (patch) | |
tree | bc6aa5f62851eaec507a167298ce98746e02d246 /src/Bindings | |
parent | Fixed SQLiteCpp include paths for MSVC2010+. (diff) | |
download | cuberite-4dd858f8997488e2252f5a04df9df1654a70d67f.tar cuberite-4dd858f8997488e2252f5a04df9df1654a70d67f.tar.gz cuberite-4dd858f8997488e2252f5a04df9df1654a70d67f.tar.bz2 cuberite-4dd858f8997488e2252f5a04df9df1654a70d67f.tar.lz cuberite-4dd858f8997488e2252f5a04df9df1654a70d67f.tar.xz cuberite-4dd858f8997488e2252f5a04df9df1654a70d67f.tar.zst cuberite-4dd858f8997488e2252f5a04df9df1654a70d67f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Bindings/ManualBindings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Bindings/ManualBindings.cpp b/src/Bindings/ManualBindings.cpp index 28ee00b36..6d69e2595 100644 --- a/src/Bindings/ManualBindings.cpp +++ b/src/Bindings/ManualBindings.cpp @@ -2189,7 +2189,7 @@ static int tolua_cClientHandle_GetUUIDsFromPlayerNames(lua_State * L) lua_newtable(L); // stack index 3 // Get the UUIDs: - AStringVector UUIDs = cRoot::Get()->GetAuthenticator().GetUUIDsFromPlayerNames(PlayerNames); + AStringVector UUIDs = cRoot::Get()->GetMojangAPI().GetUUIDsFromPlayerNames(PlayerNames); if (UUIDs.size() != PlayerNames.size()) { // A hard error has occured while processing the request, no UUIDs were returned. Return an empty table: |