]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/menu/command/menu_cmd.qc
Update playerdetail database handler, actually BUILD the databases
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / command / menu_cmd.qc
index dbf9e14bd47088288147d1ad73bd5a6f5cf8d017..ab7344e70464b9ca5d2f8357ebb4eacd218fe374 100644 (file)
@@ -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;
        }
 
@@ -48,9 +51,15 @@ void GameCommand(string theCommand)
                return;
        }
 
+       if(argv(0) == "update_conwidths_before_vid_restart")
+       {
+               updateConwidths(cvar("vid_width"), cvar("vid_height"), cvar("vid_pixelheight"));
+               return;
+       }
+
        if(argv(0) == "directmenu" || argv(0) == "directpanelhudmenu")
        {
-               string filter;
+               string filter = string_null;
                if(argv(0) == "directpanelhudmenu")
                        filter = strzone("HUD");
 
@@ -107,8 +116,10 @@ void GameCommand(string theCommand)
                return;
        }
 
-       if(argv(0) == "curl")
+       if(argv(0) == "debugstats")
        {
+               //PlayerStats_PlayerDetail();
+               return;
        }
 
        print(_("Invalid command. For a list of supported commands, try menu_cmd help.\n"));