From 0e4a456da000d70542eee0fea5d59cbafbcb1a4b Mon Sep 17 00:00:00 2001 From: terencehill Date: Wed, 4 Apr 2012 13:31:58 +0200 Subject: [PATCH] Fix menu_cmd help not listing the shared commands (message is not translatable on purpose as the same message is not translatable in cl_cmd.qc too) --- qcsrc/menu/command/menu_cmd.qc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qcsrc/menu/command/menu_cmd.qc b/qcsrc/menu/command/menu_cmd.qc index f6312931f..9d99c5c8e 100644 --- a/qcsrc/menu/command/menu_cmd.qc +++ b/qcsrc/menu/command/menu_cmd.qc @@ -35,7 +35,10 @@ void GameCommand(string theCommand) print(_("Usage: menu_cmd command..., where possible commands are:\n")); print(_(" sync - reloads all cvars on the current menu page\n")); print(_(" directmenu ITEM - select a menu item as main item\n")); - GenericCommand("help"); + + print("\nGeneric commands shared by all programs:\n"); + GenericCommand_macro_help(); + return; } -- 2.39.2