mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Hook up 'convar_findByFlags' command callback
In-engine implementation has logging stripped.
This commit is contained in:
parent
f08fbc8745
commit
e4eb6d278f
@ -378,6 +378,7 @@ void ConCommand::InitShipped(void)
|
||||
g_pCVar->FindCommand("help")->m_fnCommandCallback = CVHelp_f;
|
||||
g_pCVar->FindCommand("convar_list")->m_fnCommandCallback = CVList_f;
|
||||
g_pCVar->FindCommand("convar_differences")->m_fnCommandCallback = CVDiff_f;
|
||||
g_pCVar->FindCommand("convar_findByFlags")->m_fnCommandCallback = CVFlag_f;
|
||||
#ifndef DEDICATED
|
||||
//-------------------------------------------------------------------------
|
||||
// MATERIAL SYSTEM
|
||||
|
@ -1092,3 +1092,16 @@ void CVDiff_f(const CCommand& args)
|
||||
{
|
||||
cv->CvarDifferences(args);
|
||||
}
|
||||
|
||||
/*
|
||||
=====================
|
||||
CVFlag_f
|
||||
|
||||
List all ConVar's
|
||||
with specified flags
|
||||
=====================
|
||||
*/
|
||||
void CVFlag_f(const CCommand& args)
|
||||
{
|
||||
cv->CvarFindFlags_f(args);
|
||||
}
|
||||
|
@ -57,6 +57,7 @@ void BHit_f(const CCommand& args);
|
||||
void CVHelp_f(const CCommand& args);
|
||||
void CVList_f(const CCommand& args);
|
||||
void CVDiff_f(const CCommand& args);
|
||||
void CVFlag_f(const CCommand& args);
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
class VCallback : public IDetour
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user