diff options
author | Tim Angus <tim@ngus.net> | 2006-12-29 18:34:50 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2006-12-29 18:34:50 +0000 |
commit | 421cbbd5c614c11b244763f300140d5f8849ac63 (patch) | |
tree | d61eb2429c8125bbaf6cd53b25396b5eedd1ee09 /src/game | |
parent | 2cbc5f0f690009765eff894f24d7623a480f7e49 (diff) |
* (bug 2926) Tesla range reduced to sphere, instead of cube
(Christophe Cavalaria <chris.cavalaria@free.fr>)
* (bug 2786) Cleanup of error message display (Martin Doucha)
* (bug 2787) Scroll-wheel support in list widgets (rasz)
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/g_buildable.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c index 1b9005b7..f10251cf 100644 --- a/src/game/g_buildable.c +++ b/src/game/g_buildable.c @@ -2128,7 +2128,8 @@ void HTeslaGen_Think( gentity_t *self ) enemy = &g_entities[ entityList[ i ] ]; if( enemy->client && enemy->client->ps.stats[ STAT_PTEAM ] == PTE_ALIENS && - enemy->health > 0 ) + enemy->health > 0 && + Distance( enemy->s.pos.trBase, self->s.pos.trBase ) <= TESLAGEN_RANGE ) { VectorSubtract( enemy->s.pos.trBase, self->s.pos.trBase, dir ); VectorNormalize( dir ); |