]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/cmd.qh
Merge branch 'master' into terencehill/lms_updates
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / cmd.qh
1 #pragma once
2
3 float autocvar_sv_clientcommand_antispam_time;
4 int autocvar_sv_clientcommand_antispam_count;
5 bool autocvar_sv_ready_restart;
6 bool autocvar_sv_ready_restart_repeatable;
7
8 .float cmd_floodtime;
9 .float cmd_floodcount;
10
11 string MapVote_Suggest(entity this, string m);
12
13 // used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file
14 void ClientCommand_macro_write_aliases(float fh);