X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fcommand%2Fcmd.qh;h=802afc8bde6f86e1ed3e145df61f111ea51ec715;hb=ccf1757e6a71d864249ebe4f3cd13331529bcb41;hp=120bf3e02ebfd3a4ab0154490d5d2114d8b60ae4;hpb=9138acec2282209ac6867c5a34365cff3fb8fa64;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/command/cmd.qh b/qcsrc/server/command/cmd.qh index 120bf3e02..802afc8bd 100644 --- a/qcsrc/server/command/cmd.qh +++ b/qcsrc/server/command/cmd.qh @@ -1,17 +1,12 @@ -// ================================================= -// Declarations for server side networked commands -// Last updated: December 26th, 2011 -// ================================================= +#pragma once + +float autocvar_sv_clientcommand_antispam_time; +int autocvar_sv_clientcommand_antispam_count; .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); +string MapVote_Suggest(entity this, string m); // used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file void ClientCommand_macro_write_aliases(float fh);