================== CL_ForwardToServer_f ================== */
| 335 | ================== |
| 336 | */ |
| 337 | void CL_ForwardToServer_f( void ) { |
| 338 | if ( cls.state != CA_ACTIVE ) { |
| 339 | Com_Printf ("Not connected to a server.\n"); |
| 340 | return; |
| 341 | } |
| 342 | |
| 343 | // don't forward the first argument |
| 344 | if ( Cmd_Argc() > 1 ) { |
| 345 | CL_AddReliableCommand( Cmd_Args() ); |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | /* |
| 350 | ================== |
nothing calls this directly
no test coverage detected