Change default value of cv_chams
This commit is contained in:
parent
ef29333d21
commit
b5981b1da3
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -33,7 +33,6 @@ DECL_CVAR_EXTERN(bhop);
|
|||
DECL_CVAR_EXTERN(autostrafe);
|
||||
DECL_CVAR_EXTERN(esp);
|
||||
DECL_CVAR_EXTERN(chams);
|
||||
|
||||
DECL_CVAR_EXTERN(clmove);
|
||||
|
||||
/*----------------------------------------------------------------------------*/
|
||||
|
|
Loading…
Reference in New Issue