Fix netconsole bug

This commit is contained in:
Kawe Mazidjatari 2022-05-07 03:52:33 +02:00
parent 57e6dc4280
commit 0549134133
2 changed files with 5 additions and 1 deletions

View File

@ -139,6 +139,11 @@ void CNetCon::UserInput(void)
this->Send(svSerialized);
}
}
else // Single arg command query.
{
std::string svSerialized = this->Serialize(svInput.c_str(), "", cl_rcon::request_t::SERVERDATA_REQUEST_EXECCOMMAND);
this->Send(svSerialized);
}
}
else // Setup connection from input.
{

View File

@ -646,7 +646,6 @@ _RCON_CmdQuery_f_CompletionFunc
*/
void _RCON_CmdQuery_f_CompletionFunc(const CCommand& args)
{
if (args.ArgC() < 2)
{
if (g_pRConClient->IsInitialized()