From 85c5594148a0a6e36f411ccdfe5c9dd71f91ba95 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 15 May 2007 10:58:19 +0000 Subject: [PATCH] allow the progs to signal whether they handled the info change or not --- qw/source/sv_user.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qw/source/sv_user.c b/qw/source/sv_user.c index 66e62b5e3..41a78a12c 100644 --- a/qw/source/sv_user.c +++ b/qw/source/sv_user.c @@ -1257,7 +1257,8 @@ SV_SetInfo_f (void *unused) P_STRING (&sv_pr_state, 1) = PR_SetTempString (&sv_pr_state, value); PR_ExecuteProgram (&sv_pr_state, sv_funcs.UserInfoCallback); PR_PopFrame (&sv_pr_state); - return; + if (R_FLOAT (&sv_pr_state)) + return; } SV_SetUserinfo (host_client, key, value);