diff options
author | Mattes D <github@xoft.cz> | 2014-12-10 11:17:11 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-12-10 11:17:11 +0100 |
commit | 32bce44f1f6167bfce5deaa084e7dd90f71e39e2 (patch) | |
tree | 33315fbd4cda5b3be615f763deca3a8f660ead8f /src/Root.h | |
parent | Fixed compiling. (diff) | |
parent | Changed method call to DoesAllowMultiLogin() instead of IsAllowMultiLogin() (diff) | |
download | cuberite-32bce44f1f6167bfce5deaa084e7dd90f71e39e2.tar cuberite-32bce44f1f6167bfce5deaa084e7dd90f71e39e2.tar.gz cuberite-32bce44f1f6167bfce5deaa084e7dd90f71e39e2.tar.bz2 cuberite-32bce44f1f6167bfce5deaa084e7dd90f71e39e2.tar.lz cuberite-32bce44f1f6167bfce5deaa084e7dd90f71e39e2.tar.xz cuberite-32bce44f1f6167bfce5deaa084e7dd90f71e39e2.tar.zst cuberite-32bce44f1f6167bfce5deaa084e7dd90f71e39e2.zip |
Diffstat (limited to 'src/Root.h')
-rw-r--r-- | src/Root.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Root.h b/src/Root.h index e70b284f9..2c512a5df 100644 --- a/src/Root.h +++ b/src/Root.h @@ -129,7 +129,10 @@ public: /** Finds the player over his uuid and calls the callback */ bool DoWithPlayerByUUID(const AString & a_PlayerUUID, cPlayerListCallback & a_Callback); // >> EXPORTED IN MANUALBINDINGS << - + + /** Finds the player using it's complete username and calls the callback */ + bool DoWithPlayer(const AString & a_PlayerName, cPlayerListCallback & a_Callback); + // tolua_begin /// Sends a chat message to all connected clients (in all worlds) |