[quake3-commits] r2217 - trunk/code/server
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Tue Jan 24 18:42:16 EST 2012
Author: thilo
Date: 2012-01-24 18:42:16 -0500 (Tue, 24 Jan 2012)
New Revision: 2217
Modified:
trunk/code/server/sv_init.c
Log:
Add the new ioquake3 master server as standard for sv_master2
Modified: trunk/code/server/sv_init.c
===================================================================
--- trunk/code/server/sv_init.c 2012-01-17 23:06:06 UTC (rev 2216)
+++ trunk/code/server/sv_init.c 2012-01-24 23:42:16 UTC (rev 2217)
@@ -673,7 +673,8 @@
Cvar_Get ("sv_dlURL", "", CVAR_SERVERINFO | CVAR_ARCHIVE);
sv_master[0] = Cvar_Get("sv_master1", MASTER_SERVER_NAME, 0);
- for(index = 1; index < MAX_MASTER_SERVERS; index++)
+ sv_master[1] = Cvar_Get("sv_master2", "master.ioquake3.org", 0);
+ for(index = 2; index < MAX_MASTER_SERVERS; index++)
sv_master[index] = Cvar_Get(va("sv_master%d", index + 1), "", CVAR_ARCHIVE);
sv_reconnectlimit = Cvar_Get ("sv_reconnectlimit", "3", 0);
More information about the quake3-commits
mailing list