From bf88ecbc4a3d1113b0fa6b99e9358373ec2b0e75 Mon Sep 17 00:00:00 2001 From: Amos Date: Wed, 2 Nov 2022 14:30:43 +0100 Subject: [PATCH] Update command names in help descriptions --- r5dev/tier1/cvar.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/r5dev/tier1/cvar.cpp b/r5dev/tier1/cvar.cpp index b7688a1e..dc8b46d7 100644 --- a/r5dev/tier1/cvar.cpp +++ b/r5dev/tier1/cvar.cpp @@ -425,7 +425,7 @@ void CCvarUtilities::CvarList(const CCommand& args) // Print usage? if (iArgs == 2 && !Q_strcasecmp(args[1], "?")) { - DevMsg(eDLL_T::ENGINE, "cvarlist: [log logfile] [ partial ]\n"); + DevMsg(eDLL_T::ENGINE, "convar_list: [ log logfile ] [ partial ]\n"); return; } @@ -457,7 +457,7 @@ void CCvarUtilities::CvarList(const CCommand& args) } // Banner - DevMsg(eDLL_T::ENGINE, "cvar list\n--------------\n"); + DevMsg(eDLL_T::ENGINE, "convar list\n--------------\n"); CUtlRBTree< ConCommandBase* > sorted(0, 0, ConCommandBaseLessFunc); CCvar::CCVarIteratorInternal* itint = g_pCVar->FactoryInternalIterator(); @@ -594,7 +594,7 @@ void CCvarUtilities::CvarFindFlags_f(const CCommand& args) { if (args.ArgC() < 2) { - DevMsg(eDLL_T::ENGINE, "Usage: findflags \n"); + DevMsg(eDLL_T::ENGINE, "Usage: convar_findByFlags \n"); DevMsg(eDLL_T::ENGINE, "Available flags to search for: \n"); for (int i = 0; i < ARRAYSIZE(g_ConVarFlags); i++)