diff options
author | Andrey Nazarov <skuller@skuller.net> | 2007-12-15 21:42:30 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2007-12-15 21:42:30 +0000 |
commit | df30d554a66cf7034967df8038b9a041bf26f98e (patch) | |
tree | 886257477d0dade7ceccd3cee639b6b9b5cf8972 /source/sv_game.c | |
parent | d6a27b45135b034fe05122f815841c1b22554a1e (diff) |
Fixed MVD observers being stuck in place.
Diffstat (limited to 'source/sv_game.c')
-rw-r--r-- | source/sv_game.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sv_game.c b/source/sv_game.c index 24074f4..f135b36 100644 --- a/source/sv_game.c +++ b/source/sv_game.c @@ -701,7 +701,7 @@ void PF_Pmove( pmove_t *pm ) { if( sv_client ) { Pmove( pm, &sv_client->pmp ); } else { - Pmove( pm, &sv.pmp ); + Pmove( pm, &sv_pmp ); } } |