]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/menu/command/menu_cmd.qc
First working version of PlayerInfo retrieval from Xonstats (called on m_init and...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / command / menu_cmd.qc
index a8b569cc35dc61d75f4fe94d2c23c06cb4639196..1041c168fb21bd8a00f764a186cd14927854fa3c 100644 (file)
@@ -110,21 +110,12 @@ void GameCommand(string theCommand)
                return;
        }
 
-       if(argv(0) == "debugstats_details")
+       if(argv(0) == "debugstats")
        {
                PlayerInfo_Init();
                PlayerInfo_Details();
                return;
        }
 
-       if(argv(0) == "debugstats_basic")
-       {
-                entity p = spawn();
-                p.playerid = 0;
-               PlayerInfo_Init();
-               PlayerInfo_Basic(p);
-               return;
-       }
-
        print(_("Invalid command. For a list of supported commands, try menu_cmd help.\n"));
 }