diff options
author | Tim Angus <tim@ngus.net> | 2009-10-09 22:24:05 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:45 +0000 |
commit | a1f3d889f1eca9b3a670363dd386480ec2b48a76 (patch) | |
tree | 80452d051386e4ca98efed6d2cd6f762416b46e7 /src/server/sv_game.c | |
parent | d28ad7411a91881d168d45d0846adf80a579a02f (diff) |
* (bug #3836) Add [SV|trap]_SetConfigstringRestrictions which prevents some
clients receiving a config string
* Move BG_ClientList* to Com_ClientList*
* Split CS_STAGES into CS_ALIEN_STAGES and CS_HUMAN_STAGES
Diffstat (limited to 'src/server/sv_game.c')
-rw-r--r-- | src/server/sv_game.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/server/sv_game.c b/src/server/sv_game.c index 1efa6d5f..2db7ee3f 100644 --- a/src/server/sv_game.c +++ b/src/server/sv_game.c @@ -386,6 +386,9 @@ intptr_t SV_GameSystemCalls( intptr_t *args ) { case G_GET_CONFIGSTRING: SV_GetConfigstring( args[1], VMA(2), args[3] ); return 0; + case G_SET_CONFIGSTRING_RESTRICTIONS: + SV_SetConfigstringRestrictions( args[1], VMA(2) ); + return 0; case G_SET_USERINFO: SV_SetUserinfo( args[1], VMA(2) ); return 0; |