diff options
author | Tim Angus <tim@ngus.net> | 2001-02-03 02:11:38 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-02-03 02:11:38 +0000 |
commit | cb5ec6e4ba71cc0150743ffaedfc449d8cc22878 (patch) | |
tree | 0ea1691ee725f611c4008e8ee0a85d5b62dbd521 /src/game/bg_misc.c | |
parent | 0e1c05c87da0d9b94165daaf617b7096d36b2b7c (diff) |
Changed mcu activation method. Bodies drop to floor. Player model no longer displayed in PM_FREEZE
Diffstat (limited to 'src/game/bg_misc.c')
-rw-r--r-- | src/game/bg_misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c index 25ade6fd..d168b8da 100644 --- a/src/game/bg_misc.c +++ b/src/game/bg_misc.c @@ -1421,7 +1421,7 @@ void BG_PlayerStateToEntityState( playerState_t *ps, entityState_t *s, qboolean int i; vec3_t ceilingNormal = { 0, 0, -1 }; - if ( ps->pm_type == PM_INTERMISSION || ps->pm_type == PM_SPECTATOR ) { + if ( ps->pm_type == PM_INTERMISSION || ps->pm_type == PM_SPECTATOR || ps->pm_type == PM_FREEZE ) { s->eType = ET_INVISIBLE; } else if ( ps->stats[STAT_HEALTH] <= GIB_HEALTH ) { s->eType = ET_INVISIBLE; @@ -1516,7 +1516,7 @@ void BG_PlayerStateToEntityStateExtraPolate( playerState_t *ps, entityState_t *s int i; vec3_t ceilingNormal = { 0, 0, -1 }; - if ( ps->pm_type == PM_INTERMISSION || ps->pm_type == PM_SPECTATOR ) { + if ( ps->pm_type == PM_INTERMISSION || ps->pm_type == PM_SPECTATOR || ps->pm_type == PM_FREEZE ) { s->eType = ET_INVISIBLE; } else if ( ps->stats[STAT_HEALTH] <= GIB_HEALTH ) { s->eType = ET_INVISIBLE; |