1
0
Fork 0

Fix the error in #3270.

This commit is contained in:
Alexander Harkness 2016-07-29 19:51:33 +01:00
parent 56a0c48580
commit fb2e231f5e
1 changed files with 1 additions and 1 deletions

View File

@ -1026,7 +1026,7 @@ AStringVector cRoot::GetPlayerTabCompletionMultiWorld(const AString & a_Text)
virtual bool Item(cWorld * a_World) override virtual bool Item(cWorld * a_World) override
{ {
a_World->TabCompleteUserName(m_Search, m_Results); a_World->TabCompleteUserName(m_Search, m_Results);
return true; return false;
} }
private: private:
AStringVector & m_Results; AStringVector & m_Results;