From afbf4dd0c3999e58f59b3d4e3dd4b93d6abe8fd0 Mon Sep 17 00:00:00 2001 From: icculus Date: Sun, 6 Jul 2008 20:07:43 +0000 Subject: Reverted svn revision #1410 to sv_init.c sv_voip is a protocol version number, not a boolean, so this check is reasonable and correct. git-svn-id: svn://svn.icculus.org/quake3/trunk@1419 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/server/sv_init.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'code/server') diff --git a/code/server/sv_init.c b/code/server/sv_init.c index 28b3a1d..97154f0 100644 --- a/code/server/sv_init.c +++ b/code/server/sv_init.c @@ -656,6 +656,10 @@ void SV_Init (void) { sv_pure = Cvar_Get ("sv_pure", "1", CVAR_SYSTEMINFO ); #if USE_VOIP sv_voip = Cvar_Get ("sv_voip", "1", CVAR_SYSTEMINFO | CVAR_LATCH); + if ( (sv_voip->integer < 0) || (sv_voip->integer > 1) ) { + Com_Printf("WARNING: sv_voip must be 0 or 1. Setting to 1."); + Cvar_Set ("sv_voip", "1"); + } #endif Cvar_Get ("sv_paks", "", CVAR_SYSTEMINFO | CVAR_ROM ); Cvar_Get ("sv_pakNames", "", CVAR_SYSTEMINFO | CVAR_ROM ); -- cgit v1.2.3