X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fcommand%2Fcmd.qh;h=120bf3e02ebfd3a4ab0154490d5d2114d8b60ae4;hb=b38e2bae0a50554f26bf5af1fbd0e70b97cc0c71;hp=f7693a33b139765deb9320aef80fbb1b59ae877e;hpb=7e957e97bcf2f9c6b773d9e1f6cf78041f538500;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/command/cmd.qh b/qcsrc/server/command/cmd.qh index f7693a33b..120bf3e02 100644 --- a/qcsrc/server/command/cmd.qh +++ b/qcsrc/server/command/cmd.qh @@ -1,12 +1,17 @@ // ================================================= // Declarations for server side networked commands -// Last updated: December 14th, 2011 +// 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);