From: terencehill Date: Wed, 17 Mar 2021 11:35:32 +0000 (+0100) Subject: Fix command names formatted as input arguments in menu_cmd help X-Git-Tag: xonotic-v0.8.5~500 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=eb6b1d8a6518545fa385a5ef6a631f4be03590f6;p=xonotic%2Fxonotic-data.pk3dir.git Fix command names formatted as input arguments in menu_cmd help --- 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();