X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fcommand%2Fcmd.qh;h=f2f72157140916a6e483117cee46eabbab424fc7;hb=44b19a9101514c2f7c60db341fc08bc677278901;hp=120bf3e02ebfd3a4ab0154490d5d2114d8b60ae4;hpb=5792233348864c255d2a73e2d443d3c6b6b7205b;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/command/cmd.qh b/qcsrc/server/command/cmd.qh index 120bf3e02..f2f721571 100644 --- a/qcsrc/server/command/cmd.qh +++ b/qcsrc/server/command/cmd.qh @@ -1,17 +1,14 @@ -// ================================================= -// 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; +bool autocvar_sv_ready_restart; +bool autocvar_sv_ready_restart_repeatable; .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);