add EXT to the challenge string as a generic marker for the clients to send "*cap" etc.

This commit is contained in:
Bill Currie 2007-03-21 11:53:56 +00:00 committed by Jeff Teunissen
parent f0a4c4ace5
commit 4fd2c3d191
2 changed files with 3 additions and 1 deletions

View File

@ -982,6 +982,8 @@ CL_ConnectionlessPacket (void)
if (strstr (s, "QF")) { if (strstr (s, "QF")) {
Con_Printf (": QuakeForge server detected\n"); Con_Printf (": QuakeForge server detected\n");
CL_AddQFInfoKeys (); CL_AddQFInfoKeys ();
} else if (strstr (s, "EXT")) {
CL_AddQFInfoKeys ();
} else { } else {
Con_Printf ("\n"); Con_Printf ("\n");
} }

View File

@ -703,7 +703,7 @@ SVC_GetChallenge (void)
} }
if (sv_extensions->int_val) { if (sv_extensions->int_val) {
extended = " QF qtv"; extended = " QF qtv EXT";
} }
// send it to the client // send it to the client