mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Rename to make more sense
This commit is contained in:
parent
8c940fcbc8
commit
d3c7b9baf5
@ -410,16 +410,16 @@ void CConsole::FindFromPartial(void)
|
||||
m_bSuggestUpdate = true;
|
||||
m_vsvSuggest.clear();
|
||||
|
||||
for (int i = 0; i < g_vsvAllConVars.size(); i++)
|
||||
for (int i = 0; i < g_vsvCommandBases.size(); i++)
|
||||
{
|
||||
if (m_vsvSuggest.size() < con_suggestion_limit->GetInt())
|
||||
{
|
||||
if (g_vsvAllConVars[i].find(m_szInputBuf) != std::string::npos)
|
||||
if (g_vsvCommandBases[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_vsvCommandBases[i]) == m_vsvSuggest.end())
|
||||
{
|
||||
std::string svValue;
|
||||
ConCommandBase* pCommandBase = g_pCVar->FindCommandBase(g_vsvAllConVars[i].c_str());
|
||||
ConCommandBase* pCommandBase = g_pCVar->FindCommandBase(g_vsvCommandBases[i].c_str());
|
||||
|
||||
if (pCommandBase != nullptr)
|
||||
{
|
||||
@ -452,7 +452,7 @@ void CConsole::FindFromPartial(void)
|
||||
}
|
||||
}
|
||||
|
||||
m_vsvSuggest.push_back(g_vsvAllConVars[i] + svValue);
|
||||
m_vsvSuggest.push_back(g_vsvCommandBases[i] + svValue);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -60,7 +60,7 @@ bool HModAppSystemGroup_Create(CModAppSystemGroup* modAppSystemGroup)
|
||||
|
||||
for (auto& map : g_pCVar->DumpToMap())
|
||||
{
|
||||
g_vsvAllConVars.push_back(map.first.c_str());
|
||||
g_vsvCommandBases.push_back(map.first.c_str());
|
||||
}
|
||||
g_bAppSystemInit = true;
|
||||
|
||||
|
@ -141,5 +141,5 @@ std::unordered_map<std::string, ConCommandBase*> CCVar::DumpToMap()
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
std::vector<std::string> g_vsvAllConVars;
|
||||
std::vector<std::string> g_vsvCommandBases;
|
||||
CCVar* g_pCVar = reinterpret_cast<CCVar*>(p_CEngineAPI_Connect.FindPatternSelf("48 8D 0D", ADDRESS::Direction::DOWN, 40).ResolveRelativeAddressSelf(0x3, 0x7).GetPtr());
|
||||
|
@ -112,7 +112,7 @@ public:
|
||||
};
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
extern std::vector<std::string> g_vsvAllConVars;
|
||||
extern std::vector<std::string> g_vsvCommandBases;
|
||||
extern CCVar* g_pCVar;
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user