|
|
@ -1727,14 +1727,12 @@ pfnServerCmd |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
static int GAME_EXPORT pfnServerCmd( const char *szCmdString ) |
|
|
|
static int GAME_EXPORT pfnServerCmd( const char *szCmdString ) |
|
|
|
{ |
|
|
|
{ |
|
|
|
string buf; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if( !COM_CheckString( szCmdString )) |
|
|
|
if( !COM_CheckString( szCmdString )) |
|
|
|
return 0; |
|
|
|
return 0; |
|
|
|
|
|
|
|
|
|
|
|
// just like the client typed "cmd xxxxx" at the console
|
|
|
|
// just like the client typed "cmd xxxxx" at the console
|
|
|
|
Q_snprintf( buf, sizeof( buf ) - 1, "cmd %s\n", szCmdString ); |
|
|
|
MSG_BeginClientCmd( &cls.netchan.message, clc_stringcmd ); |
|
|
|
Cbuf_AddText( buf ); |
|
|
|
MSG_WriteString( &cls.netchan.message, szCmdString ); |
|
|
|
|
|
|
|
|
|
|
|
return 1; |
|
|
|
return 1; |
|
|
|
} |
|
|
|
} |
|
|
|