summaryrefslogtreecommitdiffstats
path: root/src/Bindings/ManualBindings.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-07-29 17:45:55 +0200
committermadmaxoft <github@xoft.cz>2014-07-30 13:56:29 +0200
commit4dd858f8997488e2252f5a04df9df1654a70d67f (patch)
treebc6aa5f62851eaec507a167298ce98746e02d246 /src/Bindings/ManualBindings.cpp
parentFixed SQLiteCpp include paths for MSVC2010+. (diff)
downloadcuberite-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 'src/Bindings/ManualBindings.cpp')
-rw-r--r--src/Bindings/ManualBindings.cpp2
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: