From bf4570de7238fee509e6d84306413cd81fc8042f Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 4 Nov 2001 23:02:43 +0000 Subject: [PATCH] fix some reversed logic that caused the server to send the wrong info keys to a connecting client. --- qw/source/sv_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qw/source/sv_main.c b/qw/source/sv_main.c index 366caad87..59311f6da 100644 --- a/qw/source/sv_main.c +++ b/qw/source/sv_main.c @@ -360,7 +360,7 @@ SV_CalcPing (client_t *cl) static int make_info_string_filter (const char *key) { - return *key == '_' || Info_FilterForKey (key, client_info_filters); + return *key == '_' || !Info_FilterForKey (key, client_info_filters); } /*