================== SV_ClientThink ================== */
| 390 | ================== |
| 391 | */ |
| 392 | void SV_ClientThink (client_t *cl, usercmd_t *cmd) { |
| 393 | cl->lastUsercmd = *cmd; |
| 394 | |
| 395 | if ( cl->state != CS_ACTIVE ) { |
| 396 | return; // may have been kicked during the last usercmd |
| 397 | } |
| 398 | |
| 399 | ge->ClientThink( cl - svs.clients, cmd ); |
| 400 | } |
| 401 | |
| 402 | /* |
| 403 | ================== |