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); /*----------------------------------------------------------------------------*/