Disable tracers by default on CS1.6

This commit is contained in:
Wizzard 2023-09-19 18:19:04 -04:00
parent a688d94e9d
commit b7bac66484
1 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,7 @@
#include "include/cvars.h"
#include "include/sdk.h"
#include "include/globals.h"
#include "include/game_detection.h"
DECL_CVAR(bhop);
DECL_CVAR(autostrafe);
@ -23,10 +24,13 @@ bool cvars_init(void) {
REGISTER_CVAR(esp, 3);
REGISTER_CVAR(chams, 1);
REGISTER_CVAR(crosshair, 0);
REGISTER_CVAR(tracers, 1);
REGISTER_CVAR(clmove, 0);
REGISTER_CVAR(watermark, 1);
REGISTER_CVAR(watermark_rainbow, 1);
if (IsCS16()) {
REGISTER_CVAR(tracers, 0);
} else {
REGISTER_CVAR(tracers, 1);
}
return true;
}