diff options
author | MaeJong <mewiceclair@gmail.com> | 2017-05-13 20:32:04 +0200 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2017-05-14 22:08:58 +0200 |
commit | 0f43c487b1688136b39488aca5df5d2e9ec95fc2 (patch) | |
tree | 1a1a295b1624367cc8a0674b7a462b519a59ac5d /src/game/g_active.c | |
parent | 15219d75a19ef739fecbb76e755d0f9699ada364 (diff) |
Move tyrant healing aura to adv. basilisks
Healing aura stats remain the same
Tyrant basic regen buffed from 7 to 9
Diffstat (limited to 'src/game/g_active.c')
-rw-r--r-- | src/game/g_active.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/g_active.c b/src/game/g_active.c index ec92c97..da2df83 100644 --- a/src/game/g_active.c +++ b/src/game/g_active.c @@ -919,7 +919,7 @@ void ClientTimerActions( gentity_t *ent, int msec ) level.surrenderTeam != PTE_ALIENS && !level.vampireDeath ) { int entityList[ MAX_GENTITIES ]; - vec3_t range = { LEVEL4_REGEN_RANGE, LEVEL4_REGEN_RANGE, LEVEL4_REGEN_RANGE }; + vec3_t range = { LEVEL1_REGEN_RANGE, LEVEL1_REGEN_RANGE, LEVEL1_REGEN_RANGE }; vec3_t mins, maxs; int i, num; gentity_t *boostEntity; @@ -934,9 +934,9 @@ void ClientTimerActions( gentity_t *ent, int msec ) boostEntity = &g_entities[ entityList[ i ] ]; if( boostEntity->client && boostEntity->client->ps.stats[ STAT_PTEAM ] == PTE_ALIENS && - boostEntity->client->ps.stats[ STAT_PCLASS ] == PCL_ALIEN_LEVEL4 ) + boostEntity->client->ps.stats[ STAT_PCLASS ] == PCL_ALIEN_LEVEL1_UPG ) { - modifier = LEVEL4_REGEN_MOD; + modifier = LEVEL1_REGEN_MOD; break; } else if( boostEntity->s.eType == ET_BUILDABLE && |