mirror of
https://github.com/nzp-team/quakec.git
synced 2025-02-16 17:10:55 +00:00
CLIENT: Prevent crosshair when zoom is 1
This commit is contained in:
parent
7b0c11586a
commit
979611e9e1
1 changed files with 1 additions and 1 deletions
|
@ -1156,7 +1156,7 @@ void() Draw_Crosshair =
|
|||
}
|
||||
|
||||
float crosshair_value = cvar("crosshair");
|
||||
if (!crosshair_value)
|
||||
if (!crosshair_value || getstatf(STAT_WEAPONZOOM) == 1)
|
||||
return;
|
||||
|
||||
if (!crosshair_opacity)
|
||||
|
|
Loading…
Reference in a new issue