Q2 server browser was failing to list any servers.
This commit is contained in:
parent
d59c63f545
commit
8066f712e0
1 changed files with 2 additions and 2 deletions
|
@ -2299,14 +2299,14 @@ void Master_CheckPollSockets(void)
|
|||
#ifdef HAVE_IPV6
|
||||
if (!strncmp(s, "server6", 7)) //parse a bit more...
|
||||
{
|
||||
net_message.currentbit = (c+7)<<3;
|
||||
net_message.currentbit = c+(7<<3);
|
||||
CL_MasterListParse(NA_IPV6, SS_QUAKE2, false);
|
||||
continue;
|
||||
}
|
||||
#endif
|
||||
if (!strncmp(s, "servers", 7)) //parse a bit more...
|
||||
{
|
||||
net_message.currentbit = (c+7)<<3;
|
||||
net_message.currentbit = c+(7<<3);
|
||||
CL_MasterListParse(NA_IP, SS_QUAKE2, false);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue