diff options
author | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-06-02 19:52:13 +0000 |
---|---|---|
committer | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-06-02 19:52:13 +0000 |
commit | b7d4ef98b10aad87a1a69bdd4081b5b585c9fe9e (patch) | |
tree | 424231db4b4fa5a64240e7ca0e91e61a428c46ca /code/server | |
parent | 54a42296270247b1b1bfb1f576fe67106eb86d03 (diff) | |
download | ioquake3-aero-b7d4ef98b10aad87a1a69bdd4081b5b585c9fe9e.tar.gz ioquake3-aero-b7d4ef98b10aad87a1a69bdd4081b5b585c9fe9e.zip |
More VoIP work: treat voip/sv_voip cvars as protocol version numbers.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1358 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/server')
-rw-r--r-- | code/server/sv_client.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/code/server/sv_client.c b/code/server/sv_client.c index 6f932d1..2528e64 100644 --- a/code/server/sv_client.c +++ b/code/server/sv_client.c @@ -1371,8 +1371,10 @@ void SV_UserinfoChanged( client_t *cl ) { } #if USE_VOIP + // in the future, (val) will be a protocol version string, so only + // accept explicitly 1, not generally non-zero. val = Info_ValueForKey (cl->userinfo, "voip"); - cl->hasVoip = (strlen(val) && atoi(val)) ? qtrue : qfalse; + cl->hasVoip = (atoi(val) == 1) ? qtrue : qfalse; #endif // TTimo |