diff options
Diffstat (limited to 'source/mvd_parse.c')
-rw-r--r-- | source/mvd_parse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/mvd_parse.c b/source/mvd_parse.c index 9fd69fd..e357964 100644 --- a/source/mvd_parse.c +++ b/source/mvd_parse.c @@ -714,7 +714,8 @@ static void MVD_PlayerToEntityStates( mvd_t *mvd ) { if( !player->inuse ) { continue; } - if( player->ps.pmove.pm_type >= PM_DEAD ) { + + if( player->ps.pmove.pm_type != PM_NORMAL ) { continue; // can be out of sync } |