From ab80d71324525216285b1bfb5b02a616f653fdd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=A1=D1=83=D1=85=D0=BE=D0=B2?= <22411953+Vladislav4KZ@users.noreply.github.com> Date: Tue, 14 Jul 2026 20:03:57 +0000 Subject: [PATCH] client: don't draw the sniper crosshair sprite in spectator modes other than first-person --- cl_dll/ammo.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cl_dll/ammo.cpp b/cl_dll/ammo.cpp index a5ac4683..fe413b19 100644 --- a/cl_dll/ammo.cpp +++ b/cl_dll/ammo.cpp @@ -1173,6 +1173,9 @@ void CHudAmmo::DrawSpriteCrosshair() { int x, y; + if( g_iUser1 && g_iUser1 != OBS_IN_EYE ) + return; + if( !m_hStaticSpr ) return;