X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fcommand%2Fsv_cmd.qh;h=00e216c921855757b9a5aa87c23cfe5362fdbf9b;hb=4584f9650fa51da6a162f3cf23e8df4574d9ff17;hp=633f4068060885fba4d66b61bfde271fe920606f;hpb=a406e1b7e63e1ba26e8f59229f5410c4fa1d070d;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/command/sv_cmd.qh b/qcsrc/server/command/sv_cmd.qh index 633f40680..00e216c92 100644 --- a/qcsrc/server/command/sv_cmd.qh +++ b/qcsrc/server/command/sv_cmd.qh @@ -1,15 +1,12 @@ +#pragma once + // ================================================= // Declarations for server side game commands -// Last updated: December 14th, 2011 // ================================================= -float RadarMap_Make(float argc); - string GotoMap(string m); void race_deleteTime(string map, float pos); -#define SHUFFLETEAMS_MAX_PLAYERS 255 -#define 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);