mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
fixed empty control statement.
This commit is contained in:
parent
7558ed1b5f
commit
140a3476f9
@ -379,7 +379,7 @@ void CConsole::FindFromPartial(void)
|
||||
{
|
||||
if (g_vsvAllConVars[i].find(m_szInputBuf) != std::string::npos)
|
||||
{
|
||||
if (std::find(m_vsvSuggest.begin(), m_vsvSuggest.end(), g_vsvAllConVars[i]) == m_vsvSuggest.end());
|
||||
if (std::find(m_vsvSuggest.begin(), m_vsvSuggest.end(), g_vsvAllConVars[i]) == m_vsvSuggest.end())
|
||||
{
|
||||
std::string svValue;
|
||||
ConVar* pConVar = g_pCVar->FindVar(g_vsvAllConVars[i].c_str());
|
||||
|
Loading…
x
Reference in New Issue
Block a user