fix some reversed logic that caused the server to send the wrong info keys

to a connecting client.
This commit is contained in:
Bill Currie 2001-11-04 23:02:43 +00:00
parent 96a2ac9a70
commit bf4570de72

View file

@ -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);
}
/*