diff options
Diffstat (limited to 'src/game/g_syscalls.c')
-rw-r--r-- | src/game/g_syscalls.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game/g_syscalls.c b/src/game/g_syscalls.c index 7b030c8a..3a1cd26f 100644 --- a/src/game/g_syscalls.c +++ b/src/game/g_syscalls.c @@ -147,6 +147,11 @@ void trap_GetConfigstring( int num, char *buffer, int bufferSize ) syscall( G_GET_CONFIGSTRING, num, buffer, bufferSize ); } +void trap_SetConfigstringRestrictions( int num, const clientList_t *clientList ) +{ + syscall( G_SET_CONFIGSTRING_RESTRICTIONS, num, clientList ); +} + void trap_GetUserinfo( int num, char *buffer, int bufferSize ) { syscall( G_GET_USERINFO, num, buffer, bufferSize ); |