forgot to send the updates to the clients

This commit is contained in:
Bill Currie 2001-07-20 05:29:45 +00:00
parent 7c16afe7e9
commit a09705953f
1 changed files with 5 additions and 0 deletions

View File

@ -1688,6 +1688,11 @@ PF_setinfokey (progs_t *pr)
} else if (e1 <= MAX_CLIENTS) {
Info_SetValueForKey (svs.clients[e1 - 1].userinfo, key, value,
MAX_INFO_STRING);
MSG_WriteByte (&sv.reliable_datagram, svc_setinfo);
MSG_WriteByte (&sv.reliable_datagram, e1 - 1);
MSG_WriteString (&sv.reliable_datagram, key);
MSG_WriteString (&sv.reliable_datagram,
Info_ValueForKey (host_client->userinfo, key));
}
}