From 3c72b4c0734806d9ac24c7ed5f8cb1d95bff48ba Mon Sep 17 00:00:00 2001 From: terencehill Date: Sun, 20 Oct 2019 11:05:27 +0200 Subject: [PATCH] Fix crosshair blur not working when aiming at teammates --- 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 850217f152..972dcae424 100644 --- a/qcsrc/client/view.qc +++ b/qcsrc/client/view.qc @@ -1124,7 +1124,7 @@ void HUD_Crosshair(entity this) wcross_alpha_goal_prev = wcross_alpha; wcross_color_goal_prev = wcross_color; - if(spectatee_status == -1 && shottype == SHOTTYPE_HITTEAM || (shottype == SHOTTYPE_HITOBSTRUCTION && autocvar_crosshair_hittest_blur && !autocvar_chase_active)) + if(spectatee_status == 0 && (shottype == SHOTTYPE_HITTEAM || (shottype == SHOTTYPE_HITOBSTRUCTION && autocvar_crosshair_hittest_blur && !autocvar_chase_active))) { wcross_blur = 1; wcross_alpha *= 0.75; -- 2.39.2