Discard "Rocket Arena" in favor of "OmegA Weapon Arena"
This commit is contained in:
@@ -1119,7 +1119,7 @@ typedef struct {
|
||||
//Last Man Standing
|
||||
int lms_mode;
|
||||
|
||||
//instantgib + nexuiz style rocket arena:
|
||||
//instantgib + weapon arena:
|
||||
int nopickup;
|
||||
|
||||
//Double Domination DD
|
||||
|
||||
@@ -269,7 +269,7 @@ static void CG_TouchItem( centity_t *cent ) {
|
||||
//normally we can
|
||||
canBePicked = qtrue;
|
||||
|
||||
//But in instantgib, rocket arena, and CTF_ELIMINATION we normally can't:
|
||||
//But in instantgib, weapon arena, and CTF_ELIMINATION we normally can't:
|
||||
if(cgs.nopickup || cgs.gametype == GT_CTF_ELIMINATION)
|
||||
canBePicked = qfalse;
|
||||
|
||||
|
||||
@@ -361,7 +361,7 @@ void CG_ParseServerinfo( void ) {
|
||||
cgs.timelimit = atoi( Info_ValueForKey( info, "timelimit" ) );
|
||||
cgs.maxclients = atoi( Info_ValueForKey( info, "sv_maxclients" ) );
|
||||
cgs.roundtime = atoi( Info_ValueForKey( info, "elimination_roundtime" ) );
|
||||
cgs.nopickup = atoi( Info_ValueForKey( info, "g_rockets" ) ) + atoi( Info_ValueForKey( info, "g_instantgib" ) ) + atoi( Info_ValueForKey( info, "g_elimination" ) );
|
||||
cgs.nopickup = atoi( Info_ValueForKey( info, "g_weaponarena" ) ) + atoi( Info_ValueForKey( info, "g_instantgib" ) ) + atoi( Info_ValueForKey( info, "g_elimination" ) );
|
||||
cgs.lms_mode = atoi( Info_ValueForKey( info, "g_lms_mode" ) );
|
||||
cgs.altExcellent = atoi( Info_ValueForKey( info, "g_multiKill" ) );
|
||||
mapname = Info_ValueForKey( info, "mapname" );
|
||||
|
||||
Reference in New Issue
Block a user