mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-13 13:40:56 +00:00
Fix ipv6 server query
This commit is contained in:
parent
fe7b088de2
commit
88f1fc7500
1 changed files with 2 additions and 5 deletions
|
@ -3864,17 +3864,14 @@ void CL_GlobalServers_f( void ) {
|
||||||
|
|
||||||
if(v4enabled)
|
if(v4enabled)
|
||||||
{
|
{
|
||||||
Com_sprintf(command, sizeof(command), "getserversExt %s %s ipv6",
|
Com_sprintf(command, sizeof(command), "getserversExt %s %s",
|
||||||
cl_gamename->string, Cmd_Argv(2));
|
cl_gamename->string, Cmd_Argv(2));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Com_sprintf(command, sizeof(command), "getserversExt %s %s",
|
Com_sprintf(command, sizeof(command), "getserversExt %s %s ipv6",
|
||||||
cl_gamename->string, Cmd_Argv(2));
|
cl_gamename->string, Cmd_Argv(2));
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: test if we only have an IPv6 connection. If it's the case,
|
|
||||||
// request IPv6 servers only by appending " ipv6" to the command
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
Com_sprintf(command, sizeof(command), "getservers %s", Cmd_Argv(2));
|
Com_sprintf(command, sizeof(command), "getservers %s", Cmd_Argv(2));
|
||||||
|
|
Loading…
Reference in a new issue