diff options
author | Lukas Pioch <lukas@zgow.de> | 2014-11-05 21:57:38 +0100 |
---|---|---|
committer | Lukas Pioch <lukas@zgow.de> | 2014-11-05 21:57:38 +0100 |
commit | 13b20d6fe29ebccc60b6be0d3baa17e0353f4a06 (patch) | |
tree | 4782bcbc065945d9d94351c7803caa9e8763e5c1 /src/Root.h | |
parent | Simplified FindAndDoWithUUID, formatted line (diff) | |
download | cuberite-13b20d6fe29ebccc60b6be0d3baa17e0353f4a06.tar cuberite-13b20d6fe29ebccc60b6be0d3baa17e0353f4a06.tar.gz cuberite-13b20d6fe29ebccc60b6be0d3baa17e0353f4a06.tar.bz2 cuberite-13b20d6fe29ebccc60b6be0d3baa17e0353f4a06.tar.lz cuberite-13b20d6fe29ebccc60b6be0d3baa17e0353f4a06.tar.xz cuberite-13b20d6fe29ebccc60b6be0d3baa17e0353f4a06.tar.zst cuberite-13b20d6fe29ebccc60b6be0d3baa17e0353f4a06.zip |
Diffstat (limited to 'src/Root.h')
-rw-r--r-- | src/Root.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Root.h b/src/Root.h index f0cdf14d1..618f70fb8 100644 --- a/src/Root.h +++ b/src/Root.h @@ -126,8 +126,8 @@ public: /// Finds a player from a partial or complete player name and calls the callback - case-insensitive bool FindAndDoWithPlayer(const AString & a_PlayerName, cPlayerListCallback & a_Callback); // >> EXPORTED IN MANUALBINDINGS << - /// Finds a player with the same uuid and call the callback - bool FindAndDoWithUUID(const AString & a_PlayerUUID, cPlayerListCallback & a_Callback); // >> EXPORTED IN MANUALBINDINGS << + /** Finds the player over his uuid and calls the callback */ + bool DoWithPlayerByUUID(const AString & a_PlayerUUID, cPlayerListCallback & a_Callback); // >> EXPORTED IN MANUALBINDINGS << // tolua_begin |