diff options
author | Mikko Tiusanen <ams@daug.net> | 2014-12-01 20:21:06 +0200 |
---|---|---|
committer | Mikko Tiusanen <ams@daug.net> | 2014-12-01 20:21:06 +0200 |
commit | 714b137d73ec84c5f7cea147c44ac0e737d7c6df (patch) | |
tree | 48d779bf6246b357097d458159c9c33878c1144e /src/game/g_missile.c | |
parent | 2b47fae476112b24205c343cf6f0e7f4cd55af46 (diff) |
Disabled prifle 2ndary fire lock in place for small aliens.
Diffstat (limited to 'src/game/g_missile.c')
-rw-r--r-- | src/game/g_missile.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/g_missile.c b/src/game/g_missile.c index 830d72a..fddfe3b 100644 --- a/src/game/g_missile.c +++ b/src/game/g_missile.c @@ -206,13 +206,14 @@ void G_MissileImpact( gentity_t *ent, trace_t *trace ) { if( other->client ) { + /* NOTE: Locking enemies completely in place disabled for now. if( ( other->client->ps.stats[ STAT_STATE ] & SS_SLOWLOCKED ) && ( other->s.weapon < WP_ALEVEL3 || other->s.weapon == WP_ABUILD ) ) { other->client->ps.stats[ STAT_STATE ] |= SS_BLOBLOCKED; other->client->lastLockTime = level.time; } - else if( other->s.weapon >= WP_ALEVEL3 && other->s.weapon < WP_BLASTER + else */if( other->s.weapon >= WP_ALEVEL3 && other->s.weapon < WP_BLASTER && other->client->blobs <= 3 ) { other->client->lastSlowTime = level.time; |