]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/command/cmd.qh
Remove the other half of checkfail
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / cmd.qh
index b0118c5cf327503b77ee3245f3b9082cd4a37b72..0e04ce781cb2da5f570e192a614e5ebd8fe18ad5 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef CMD_H
+#define CMD_H
+
 // =================================================
 //  Declarations for server side networked commands
 //  Last updated: December 26th, 2011
@@ -6,14 +9,12 @@
 .float cmd_floodtime;
 .float cmd_floodcount;
 .float lms_spectate_warning;
-.float checkfail;
 
 // number of monsters spawned with mobspawn command
 float totalspawned;
 
 string MapVote_Suggest(string m);
 
-entity spawnmonster(string monster, entity spawnedby, entity own, vector orig, float respwn, float moveflag);
-
 // used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file
 void ClientCommand_macro_write_aliases(float fh);
+#endif