From a0cb5d93552ad33007fccbb769216792ea583e4e Mon Sep 17 00:00:00 2001 From: Sabian Roberts <31491602+sabianroberts@users.noreply.github.com> Date: Tue, 12 Dec 2023 00:13:01 +0000 Subject: [PATCH] Make crosshair_low off by default --- cl_dll/view.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl_dll/view.cpp b/cl_dll/view.cpp index 23d19c42..426f2d9b 100644 --- a/cl_dll/view.cpp +++ b/cl_dll/view.cpp @@ -2033,7 +2033,7 @@ void V_Init(void) cl_m249_new_punch_enabled = gEngfuncs.pfnRegisterVariable("cl_m249_new_punch_enabled", "1", FCVAR_ARCHIVE); cl_shockrifle_punch_enabled = gEngfuncs.pfnRegisterVariable("cl_shockrifle_punch_enabled", "1", FCVAR_ARCHIVE); - crosshair_low = gEngfuncs.pfnRegisterVariable("crosshair_low", "1", FCVAR_ARCHIVE); + crosshair_low = gEngfuncs.pfnRegisterVariable("crosshair_low", "0", FCVAR_ARCHIVE); }