diff options
author | Tim Angus <tim@ngus.net> | 2002-09-02 15:09:32 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2002-09-02 15:09:32 +0000 |
commit | 0175a8a7fe853047c55bc78111fb2d623648ebec (patch) | |
tree | 7bb45c0f44feacfcf12df362fa76b388cebd250b /src/cgame/cg_local.h | |
parent | 4607fb22ec24a848ce111aff87cca2ee202d3e25 (diff) |
* Bug fixes to TA console
* Implemented most of WP_GROUD_POUND
Diffstat (limited to 'src/cgame/cg_local.h')
-rw-r--r-- | src/cgame/cg_local.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/cgame/cg_local.h b/src/cgame/cg_local.h index 2bd676a2..a1ae20bc 100644 --- a/src/cgame/cg_local.h +++ b/src/cgame/cg_local.h @@ -725,8 +725,12 @@ typedef struct { int rightMoveTime; int upMoveTime; - int poisonedTime; //TA: poison cloud - int firstPoisonedTime; //TA: poison cloud + int poisonedTime; //TA: poison cloud + int firstPoisonedTime; //TA: poison cloud + int lastRumbleTime; //TA: knocked over time + vec3_t rumbleVector; //TA: vertical displacement whilst rumbling + int firstKnockedTime; //TA: knocked over time + int firstGetUpTime; //TA: getting up time float charModelFraction; //TA: loading percentages float mediaFraction; @@ -739,6 +743,8 @@ typedef struct { char consoleText[ MAX_CONSOLE_TEXT ]; consoleLine_t consoleLines[ MAX_CONSOLE_LINES ]; int numConsoleLines; + qboolean consoleValid; + } cg_t; |