Discard "Rocket Arena" in favor of "OmegA Weapon Arena"

This commit is contained in:
Izuru Yakumo
2025-07-18 16:51:40 -03:00
parent 45159a68b7
commit e08a0e41e4
13 changed files with 187 additions and 73 deletions

View File

@@ -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

View File

@@ -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;

View File

@@ -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" );