X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fworld.qh;h=3bbaad68246e942d4288f379d326686a6cb970ae;hp=d82469c11ef1ca7573752897113a614c673e01f3;hb=HEAD;hpb=c7d85168948d5ddad5b69d41116e58bcde49b694 diff --git a/qcsrc/server/world.qh b/qcsrc/server/world.qh index d82469c11..d76169e2d 100644 --- a/qcsrc/server/world.qh +++ b/qcsrc/server/world.qh @@ -6,6 +6,7 @@ bool autocvar__sv_init; bool autocvar__endmatch; bool autocvar_g_use_ammunition; bool autocvar_g_jetpack; +int autocvar_g_warmup; bool autocvar_g_warmup_allguns; bool autocvar_g_warmup_allow_timeout; #define autocvar_g_weaponarena cvar_string("g_weaponarena") @@ -28,6 +29,9 @@ float autocvar_timelimit_overtime; int autocvar_timelimit_overtimes; float autocvar_timelimit_suddendeath; +bool autocvar_sv_mapformat_is_quake3; +bool autocvar_sv_mapformat_is_quake2; + float checkrules_equality; float checkrules_suddendeathwarning; float checkrules_suddendeathend; @@ -44,7 +48,9 @@ float cvar_purechanges_count; string modname; -string gamemode_name; +string autocvar__sv_vote_gametype_custom; +bool gametype_custom_enabled; +string loaded_gametype_custom_string; string record_type; @@ -155,7 +161,9 @@ void readplayerstartcvars(); void readlevelcvars(); .vector dropped_origin; -void droptofloor(entity this); +void DropToFloor_QC_DelayedInit(entity this); IntrusiveList g_moveables; STATIC_INIT(g_moveables) { g_moveables = IL_NEW(); } + +bool observe_blocked_if_eliminated = false; // forbids eliminated players from observing