From 07cfcba9f9dd65b130941954b083adbdf167066a Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 31 Mar 2015 23:47:15 +1100 Subject: [PATCH] Disable hit indication while spectating (serves no purpose as a spectator, disabling also fixes "blinking" bug) --- 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 ee8ef320a..26e709320 100644 --- a/qcsrc/client/view.qc +++ b/qcsrc/client/view.qc @@ -763,7 +763,7 @@ void UpdateCrosshair() wcross_alpha_goal_prev = wcross_alpha; wcross_color_goal_prev = wcross_color; - if(shottype == SHOTTYPE_HITTEAM || (shottype == SHOTTYPE_HITOBSTRUCTION && autocvar_crosshair_hittest_blur && !autocvar_chase_active)) + if(spectatee_status == -1 && shottype == SHOTTYPE_HITTEAM || (shottype == SHOTTYPE_HITOBSTRUCTION && autocvar_crosshair_hittest_blur && !autocvar_chase_active)) { wcross_blur = 1; wcross_alpha *= 0.75; -- 2.39.2