From: terencehill Date: Wed, 4 Apr 2012 11:31:58 +0000 (+0200) Subject: Fix menu_cmd help not listing the shared commands (message is not translatable on... X-Git-Tag: xonotic-v0.7.0~194^2~10 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0e4a456da000d70542eee0fea5d59cbafbcb1a4b;p=xonotic%2Fxonotic-data.pk3dir.git 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) --- 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; }