1
0
Fork 0

ProtoProxy: Tab completion logging lists the last item, too

This commit is contained in:
madmaxoft 2013-07-31 14:35:48 +02:00
parent 0b166ee784
commit 15e98cc7f5
1 changed files with 4 additions and 0 deletions

View File

@ -2135,6 +2135,10 @@ bool cConnection::HandleServerTabCompletion(void)
last = i + 1;
}
}
if (last < len)
{
Log(" \"%s\"", Results.substr(last, len - last).c_str());
}
COPY_TO_CLIENT();
return true;
}