diff options
author | Tim Angus <tim@ngus.net> | 2001-12-21 21:23:41 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-12-21 21:23:41 +0000 |
commit | d90bdf12e0aaa4cef3772d0d50fc40dfb1f09802 (patch) | |
tree | a5c95c4709372cc694c709d9c7f44929491e482e /src/game/g_local.h | |
parent | 9ce221f5d4cafc60aa78a8b1f1dc584a1e806c79 (diff) |
After changing aliens->droids, changed droids->aliens *sigh*
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r-- | src/game/g_local.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h index 1a4f6982..c176fc53 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -457,16 +457,16 @@ typedef struct { gentity_t *locationHead; // head of the location list //TA: extra stuff: - int numDroidSpawns; + int numAlienSpawns; int numHumanSpawns; - int numDroidClients; + int numAlienClients; int numHumanClients; - int numLiveDroidClients; + int numLiveAlienClients; int numLiveHumanClients; - int droidBuildPoints; + int alienBuildPoints; int humanBuildPoints; int humanBuildPointsPowered; @@ -847,7 +847,7 @@ extern vmCvar_t g_enableBreath; extern vmCvar_t g_singlePlayer; extern vmCvar_t g_humanBuildPoints; -extern vmCvar_t g_droidBuildPoints; +extern vmCvar_t g_alienBuildPoints; void trap_Printf( const char *fmt ); void trap_Error( const char *fmt ); |