X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fmain.qh;h=30b6864716063cdd5f62c31159ac2e3c71b5c575;hb=0ca6306558a71a8b7fb5b62fc856d910506b187b;hp=172e0a9e5719c0e1efe37faf3e43bf6e17f34859;hpb=ccf1757e6a71d864249ebe4f3cd13331529bcb41;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/main.qh b/qcsrc/server/main.qh index 172e0a9e5..30b686471 100644 --- a/qcsrc/server/main.qh +++ b/qcsrc/server/main.qh @@ -16,6 +16,9 @@ bool autocvar_g_balance_falldamage_onlyvertical; #define autocvar_slowmo cvar("slowmo") float autocvar_sys_ticrate; +bool autocvar_sv_autopause; +void Pause_TryPause_Dedicated(entity this); + bool dropclient_schedule(entity this); /** print(), but only print if the server is not local */ @@ -35,7 +38,8 @@ float client_cefc_accumulatortime; float servertime, serverprevtime, serverframetime; -.vector oldvelocity; // for fall damage +// set in CreatureFrame_All for entities that can be damaged by fall (players) and contents (projectiles) +.vector oldvelocity; .float watersound_finished; @@ -44,6 +48,8 @@ float servertime, serverprevtime, serverframetime; .float contents_damagetime; +string GetField_fullspawndata(entity e, string f, ...); + /* ================== main