From b5981b1da3ce86e3a1984029a8c9fff318496466 Mon Sep 17 00:00:00 2001 From: 8dcc <8dcc.git@gmail.com> Date: Wed, 26 Jul 2023 16:33:53 +0200 Subject: [PATCH] Change default value of cv_chams --- src/cvars.c | 6 ++---- src/include/cvars.h | 1 - 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/cvars.c b/src/cvars.c index e4c5ac6..1fb25a7 100644 --- a/src/cvars.c +++ b/src/cvars.c @@ -7,16 +7,14 @@ DECL_CVAR(bhop); DECL_CVAR(autostrafe); DECL_CVAR(esp); DECL_CVAR(chams); - DECL_CVAR(clmove); bool cvars_init(void) { cv_bhop = REGISTER_CVAR("bhop", "1"); cv_autostrafe = REGISTER_CVAR("autostrafe", "0"); cv_esp = REGISTER_CVAR("esp", "3"); - cv_chams = REGISTER_CVAR("chams", "1"); - - cv_clmove = REGISTER_CVAR("clmove", "0"); + cv_chams = REGISTER_CVAR("chams", "3"); + cv_clmove = REGISTER_CVAR("clmove", "0"); return true; } diff --git a/src/include/cvars.h b/src/include/cvars.h index 64e98d7..5dd267a 100644 --- a/src/include/cvars.h +++ b/src/include/cvars.h @@ -33,7 +33,6 @@ DECL_CVAR_EXTERN(bhop); DECL_CVAR_EXTERN(autostrafe); DECL_CVAR_EXTERN(esp); DECL_CVAR_EXTERN(chams); - DECL_CVAR_EXTERN(clmove); /*----------------------------------------------------------------------------*/