================== SV_UpdateUserinfo_f ================== */
| 305 | ================== |
| 306 | */ |
| 307 | static void SV_UpdateUserinfo_f( client_t *cl ) { |
| 308 | Q_strncpyz( cl->userinfo, Cmd_Argv(1), sizeof(cl->userinfo) ); |
| 309 | |
| 310 | SV_UserinfoChanged( cl ); |
| 311 | // call prog code to allow overrides |
| 312 | ge->ClientUserinfoChanged( cl - svs.clients ); |
| 313 | } |
| 314 | |
| 315 | typedef struct { |
| 316 | const char *name; |
nothing calls this directly
no test coverage detected