From a09705953fea068917fae2dd83dca9b2a78670d4 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 20 Jul 2001 05:29:45 +0000 Subject: [PATCH] forgot to send the updates to the clients --- qw/source/sv_pr_cmds.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qw/source/sv_pr_cmds.c b/qw/source/sv_pr_cmds.c index d9d74fc4e..054f657f5 100644 --- a/qw/source/sv_pr_cmds.c +++ b/qw/source/sv_pr_cmds.c @@ -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)); } }