diff options
author | Tim Angus <tim@ngus.net> | 2002-08-09 01:08:23 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2002-08-09 01:08:23 +0000 |
commit | 2c7cc240ddf82a5823071ad7180ab6a91357351b (patch) | |
tree | 4f318ac92f543ead68d1a560a8e68c525f633d69 /src/game/g_cmds.c | |
parent | b209c6138bfa97f8d427611f19a5e128d1a134e0 (diff) |
* Human repair ability
* Alien buildable regeneration
* Alien class regeneration
Diffstat (limited to 'src/game/g_cmds.c')
-rw-r--r-- | src/game/g_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index 090762bc..5e65240a 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -1741,7 +1741,7 @@ void Cmd_Destroy_f( gentity_t *ent, qboolean deconstruct ) if( !( ent->client->ps.stats[ STAT_STATE ] & SS_INFESTING ) ) { AngleVectors( ent->client->ps.viewangles, forward, NULL, NULL ); - VectorMA( ent->client->ps.origin, 50, forward, end ); + VectorMA( ent->client->ps.origin, 100, forward, end ); trap_Trace( &tr, ent->client->ps.origin, NULL, NULL, end, ent->s.number, MASK_PLAYERSOLID ); traceEnt = &g_entities[ tr.entityNum ]; |