Change default value of cv_esp to 1

This commit is contained in:
8dcc 2023-07-24 10:18:29 +02:00
parent 4d71945eb3
commit c131e5251d
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ DECL_CVAR(esp);
bool cvars_init(void) {
cv_bhop = REGISTER_CVAR("bhop", "1");
cv_autostrafe = REGISTER_CVAR("autostrafe", "0");
cv_esp = REGISTER_CVAR("esp", "0");
cv_esp = REGISTER_CVAR("esp", "1");
return true;
}