summaryrefslogtreecommitdiff
path: root/source/sv_game.c
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2007-09-26 16:46:06 +0000
committerAndrey Nazarov <skuller@skuller.net>2007-09-26 16:46:06 +0000
commit46fffc982f93b82a695861493b0b6c9ce668b23a (patch)
tree2a7a312f6a567822b4569a5c7ad1f44e86ce6e55 /source/sv_game.c
parenta56ee6e51d88e099bd24ef24614a4323d49f2ceb (diff)
Implemented GAME_FEATURE_MVDSPEC.
Diffstat (limited to 'source/sv_game.c')
-rw-r--r--source/sv_game.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sv_game.c b/source/sv_game.c
index d2c4eba..e3bcd54 100644
--- a/source/sv_game.c
+++ b/source/sv_game.c
@@ -938,7 +938,7 @@ void SV_InitGameProgs ( void )
// get features
ggf = Sys_GetProcAddress( game_library, "GetGameFeatures" );
if( ggf ) {
- gameFeatures = ggf( GAME_FEATURE_CLIENTNUM );
+ gameFeatures = ggf( GAME_FEATURE_CLIENTNUM|GAME_FEATURE_MVDSPEC );
} else {
gameFeatures = 0;
}