]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/command/cmd.qh
Merge branch 'master' into Mario/nade_updates
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / cmd.qh
index 9005c5410db52b0ed6d7a04ba43ab9d48b7ac0a6..120bf3e02ebfd3a4ab0154490d5d2114d8b60ae4 100644 (file)
@@ -1,15 +1,17 @@
-// =========================================================
-//  Server side networked commands code, reworked by Samual
-//  Last updated: December 11th, 2011
-// =========================================================
-
-#define CC_REQUEST_COMMAND 1
-#define CC_REQUEST_USAGE 2
+// =================================================
+//  Declarations for server side networked commands
+//  Last updated: December 26th, 2011
+// =================================================
 
 .float cmd_floodtime;
 .float cmd_floodcount;
-.float checkfail;
 .float lms_spectate_warning;
+.float checkfail;
+
+// number of monsters spawned with mobspawn command
+float totalspawned;
 
 string MapVote_Suggest(string m);
-//void MapVote_SendPicture(float id)
+
+// used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file
+void ClientCommand_macro_write_aliases(float fh);