Change default value of cv_esp to 1
This commit is contained in:
parent
4d71945eb3
commit
c131e5251d
|
@ -10,7 +10,7 @@ DECL_CVAR(esp);
|
||||||
bool cvars_init(void) {
|
bool cvars_init(void) {
|
||||||
cv_bhop = REGISTER_CVAR("bhop", "1");
|
cv_bhop = REGISTER_CVAR("bhop", "1");
|
||||||
cv_autostrafe = REGISTER_CVAR("autostrafe", "0");
|
cv_autostrafe = REGISTER_CVAR("autostrafe", "0");
|
||||||
cv_esp = REGISTER_CVAR("esp", "0");
|
cv_esp = REGISTER_CVAR("esp", "1");
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue