From: terencehill Date: Tue, 14 Jun 2011 22:33:51 +0000 (+0200) Subject: Server doesn't need to know the client cvar hud_panel_centerprint_time anymore, it... X-Git-Tag: xonotic-v0.5.0~209 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=584a90a47156dc9d91a433a56e8a99ef6beb3fff;p=xonotic%2Fxonotic-data.pk3dir.git Server doesn't need to know the client cvar hud_panel_centerprint_time anymore, it was used by the priority system --- diff --git a/qcsrc/server/defs.qh b/qcsrc/server/defs.qh index c7052ceee..8473414d2 100644 --- a/qcsrc/server/defs.qh +++ b/qcsrc/server/defs.qh @@ -312,7 +312,6 @@ float default_weapon_alpha; .float() customizeentityforclient; .float cvar_cl_handicap; .float cvar_cl_playerdetailreduction; -.float cvar_hud_panel_centerprint_time; .string cvar_g_xonoticversion; .string cvar_cl_weaponpriority; .string cvar_cl_weaponpriorities[10]; diff --git a/qcsrc/server/miscfunctions.qc b/qcsrc/server/miscfunctions.qc index 51a06af2e..46b6952b9 100644 --- a/qcsrc/server/miscfunctions.qc +++ b/qcsrc/server/miscfunctions.qc @@ -579,7 +579,6 @@ void GetCvars(float f) MUTATOR_CALLHOOK(GetCvars); GetCvars_handleFloat(s, f, autoswitch, "cl_autoswitch"); GetCvars_handleFloat(s, f, cvar_cl_playerdetailreduction, "cl_playerdetailreduction"); - GetCvars_handleFloat(s, f, cvar_hud_panel_centerprint_time, "hud_panel_centerprint_time"); GetCvars_handleString(s, f, cvar_g_xonoticversion, "g_xonoticversion"); GetCvars_handleFloat(s, f, cvar_cl_handicap, "cl_handicap"); GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriority, "cl_weaponpriority", W_FixWeaponOrder_ForceComplete_AndBuildImpulseList);