diff options
author | Alexander Harkness <me@bearbin.net> | 2016-07-29 20:51:33 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2016-07-29 20:51:33 +0200 |
commit | fb2e231f5e35d0bc75592cf4ae739c8f09c03bbf (patch) | |
tree | 1b5d74caba9b03e195ada66a90703dc4d0e8a5da | |
parent | Added additional examples to the documentation for HOOK_BLOCK_SPREAD. (#3277) (diff) | |
download | cuberite-fb2e231f5e35d0bc75592cf4ae739c8f09c03bbf.tar cuberite-fb2e231f5e35d0bc75592cf4ae739c8f09c03bbf.tar.gz cuberite-fb2e231f5e35d0bc75592cf4ae739c8f09c03bbf.tar.bz2 cuberite-fb2e231f5e35d0bc75592cf4ae739c8f09c03bbf.tar.lz cuberite-fb2e231f5e35d0bc75592cf4ae739c8f09c03bbf.tar.xz cuberite-fb2e231f5e35d0bc75592cf4ae739c8f09c03bbf.tar.zst cuberite-fb2e231f5e35d0bc75592cf4ae739c8f09c03bbf.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Root.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Root.cpp b/src/Root.cpp index 09c91bc72..7ce36f65b 100644 --- a/src/Root.cpp +++ b/src/Root.cpp @@ -1026,7 +1026,7 @@ AStringVector cRoot::GetPlayerTabCompletionMultiWorld(const AString & a_Text) virtual bool Item(cWorld * a_World) override { a_World->TabCompleteUserName(m_Search, m_Results); - return true; + return false; } private: AStringVector & m_Results; |