mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
fix some reversed logic that caused the server to send the wrong info keys
to a connecting client.
This commit is contained in:
parent
96a2ac9a70
commit
bf4570de72
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue