From 7debb5a759751f37ac83123360f303d4bb7e1f10 Mon Sep 17 00:00:00 2001 From: FruitieX Date: Wed, 13 Oct 2010 03:08:18 +0300 Subject: [PATCH] don't freeze the vieworigin/angles in hud_configure mode if spectating someone --- qcsrc/client/View.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/client/View.qc b/qcsrc/client/View.qc index 2fbb07d4e..f91089844 100644 --- a/qcsrc/client/View.qc +++ b/qcsrc/client/View.qc @@ -382,7 +382,7 @@ void CSQC_UpdateView(float w, float h) input_angles = warpzone_fixview_cl_viewangles; view_angles = warpzone_fixview_angles; - if(cvar("cl_lockview") || autocvar__hud_configure) + if(cvar("cl_lockview") || (autocvar__hud_configure && spectatee_status <= 0)) { pmove_org = freeze_pmove_org; input_angles = view_angles = freeze_input_angles; -- 2.39.2