mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
add EXT to the challenge string as a generic marker for the clients to send "*cap" etc.
This commit is contained in:
parent
f0a4c4ace5
commit
4fd2c3d191
2 changed files with 3 additions and 1 deletions
|
@ -982,6 +982,8 @@ CL_ConnectionlessPacket (void)
|
|||
if (strstr (s, "QF")) {
|
||||
Con_Printf (": QuakeForge server detected\n");
|
||||
CL_AddQFInfoKeys ();
|
||||
} else if (strstr (s, "EXT")) {
|
||||
CL_AddQFInfoKeys ();
|
||||
} else {
|
||||
Con_Printf ("\n");
|
||||
}
|
||||
|
|
|
@ -703,7 +703,7 @@ SVC_GetChallenge (void)
|
|||
}
|
||||
|
||||
if (sv_extensions->int_val) {
|
||||
extended = " QF qtv";
|
||||
extended = " QF qtv EXT";
|
||||
}
|
||||
|
||||
// send it to the client
|
||||
|
|
Loading…
Reference in a new issue