]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/command/sv_cmd.qh
Give bots genuine ready status, fixes not appearing ready until a human is ready
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / sv_cmd.qh
index 29db3ee4df20d5edd5c4f4614ca5fccc1f5b16b9..8beb8fd5248cbf03807ac6a6f9a5a84b907f38e3 100644 (file)
@@ -2,17 +2,12 @@
 
 // =================================================
 //  Declarations for server side game commands
-//  Last updated: December 25th, 2011
 // =================================================
 
-string GotoMap(string m);
+bool shuffleteams_on_reset_map;
+void shuffleteams();
 
 void race_deleteTime(string map, float pos);
 
-const float SHUFFLETEAMS_MAX_PLAYERS = 255;
-const float SHUFFLETEAMS_MAX_TEAMS = 4;
-float shuffleteams_players[SHUFFLETEAMS_MAX_PLAYERS]; // maximum of 255 player slots
-float shuffleteams_teams[SHUFFLETEAMS_MAX_TEAMS];     // maximum of 4 teams
-
 // used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file
 void GameCommand_macro_write_aliases(float fh);