X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fmenu%2Fcommand%2Fmenu_cmd.qc;h=bb55a671bad802feb51cc1e4fb1dcd3be92ade08;hp=a06ac8e23100f7ffbc98312edba482164aec1c77;hb=06a08d0c6b573f2562297147171aff3d990fa42d;hpb=b06d3ad205f9865b7b3d7d5c97257f7802db5400 diff --git a/qcsrc/menu/command/menu_cmd.qc b/qcsrc/menu/command/menu_cmd.qc index a06ac8e23..bb55a671b 100644 --- a/qcsrc/menu/command/menu_cmd.qc +++ b/qcsrc/menu/command/menu_cmd.qc @@ -45,13 +45,12 @@ void GameCommand(string theCommand) if (argv(0) == "help" || argc == 0) { - LOG_INFO(_("Usage: menu_cmd command..., where possible commands are:")); - LOG_INFO(_(" sync - reloads all cvars on the current menu page")); - LOG_INFO(_(" directmenu ITEM - select a menu item as main item")); - LOG_INFO(_(" dumptree - dump the state of the menu as a tree to the console")); - LOG_INFO("\n"); + LOG_HELP(_("Usage: menu_cmd command..., where possible commands are:")); + LOG_HELP(_(" sync - reloads all cvars on the current menu page")); + LOG_HELP(_(" directmenu ITEM - select a menu item as main item")); + LOG_HELP(_(" dumptree - dump the state of the menu as a tree to the console")); - LOG_INFO("Generic commands shared by all programs:"); + LOG_HELP("\nGeneric commands shared by all programs:"); GenericCommand_macro_help(); return; @@ -78,7 +77,7 @@ void GameCommand(string theCommand) if (argc == 1) { - LOG_INFO(_("Available options:")); + LOG_HELP(_("Available options:")); FOREACH_ENTITY_ORDERED(it.name != "", { if (it.classname == "vtbl") continue; @@ -88,7 +87,7 @@ void GameCommand(string theCommand) if (!startsWith(s, filter)) continue; s = substring(s, strlen(filter), strlen(s) - strlen(filter)); } - LOG_INFOF(" %s", s); + LOG_HELP(" ", s); }); } else if (argc == 2 && !isdemo()) // don't allow this command in demos