Change default value of cv_chams

This commit is contained in:
8dcc 2023-07-26 16:33:53 +02:00
parent ef29333d21
commit b5981b1da3
2 changed files with 2 additions and 5 deletions

View File

@ -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;
}

View File

@ -33,7 +33,6 @@ DECL_CVAR_EXTERN(bhop);
DECL_CVAR_EXTERN(autostrafe);
DECL_CVAR_EXTERN(esp);
DECL_CVAR_EXTERN(chams);
DECL_CVAR_EXTERN(clmove);
/*----------------------------------------------------------------------------*/