diff options
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r-- | src/game/g_local.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h index a8059a20..f0087b26 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -323,7 +323,9 @@ struct gclient_s { // timeResidual is used to handle events that happen every second // like health / armor countdowns and regeneration - int timeResidual; + //TA: two timers, one every 100 msecs, another every sec + int time100; + int time1000; char *areabits; |