diff options
author | Tim Angus <tim@ngus.net> | 2005-08-06 00:02:07 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2005-08-06 00:02:07 +0000 |
commit | 1d4f4cc270bad932a1f95739bf719a644052e1e6 (patch) | |
tree | 4b98859283b7d1711170db7cef75c4945a68ef85 /src/game/g_active.c | |
parent | e14610587a2fd948308fc343c213173ace61116a (diff) |
* Reverted to non-interruptable level 1 grab
* Reduced grab time but differentiated base and advanced
Diffstat (limited to 'src/game/g_active.c')
-rw-r--r-- | src/game/g_active.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_active.c b/src/game/g_active.c index fbb746da..93ae76f0 100644 --- a/src/game/g_active.c +++ b/src/game/g_active.c @@ -995,7 +995,7 @@ void ClientThink_real( gentity_t *ent ) client->ps.pm_type = PM_NORMAL; if( client->ps.stats[ STAT_STATE ] & SS_GRABBED && - client->lastGrabTime + LEVEL1_GRAB_TIME < level.time ) + client->grabExpiryTime < level.time ) client->ps.stats[ STAT_STATE ] &= ~SS_GRABBED; if( client->ps.stats[ STAT_STATE ] & SS_BLOBLOCKED && |