Change value of cv_esp to 0

Until it works perfectly (no ghost entities)
This commit is contained in:
8dcc 2023-07-23 14:57:20 +02:00
parent 41e6b012d9
commit 2e1b44a825
1 changed files with 1 additions and 1 deletions

View File

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