From eb6b1d8a6518545fa385a5ef6a631f4be03590f6 Mon Sep 17 00:00:00 2001 From: terencehill Date: Wed, 17 Mar 2021 12:35:32 +0100 Subject: [PATCH] Fix command names formatted as input arguments in menu_cmd help --- qcsrc/menu/command/menu_cmd.qc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qcsrc/menu/command/menu_cmd.qc b/qcsrc/menu/command/menu_cmd.qc index 8485c5382..4da853bd5 100644 --- a/qcsrc/menu/command/menu_cmd.qc +++ b/qcsrc/menu/command/menu_cmd.qc @@ -46,10 +46,10 @@ void GameCommand(string theCommand) if (argv(0) == "help" || argc == 0) { LOG_HELP(_("Usage:^3 menu_cmd [], where possible commands are:")); - LOG_HELP(_(" reloads all cvars on the current menu page")); - LOG_HELP(_(" shows the menu window named (or the menu window containing an item named )")); + LOG_HELP(_(" 'sync' reloads all cvars on the current menu page")); + LOG_HELP(_(" 'directmenu' shows the menu window named (or the menu window containing an item named )")); LOG_HELP(_(" if is not specified it shows the list of available items in the console")); - LOG_HELP(_(" dumps the state of the menu as a tree to the console")); + LOG_HELP(_(" 'dumptree' dumps the state of the menu as a tree to the console")); LOG_HELP("\nGeneric commands shared by all programs:"); GenericCommand_macro_help(); -- 2.39.2