diff --git a/releases/3.2.0/source/mod/AvHGamerules.cpp b/releases/3.2.0/source/mod/AvHGamerules.cpp index b786ea9b..46fc3d86 100644 --- a/releases/3.2.0/source/mod/AvHGamerules.cpp +++ b/releases/3.2.0/source/mod/AvHGamerules.cpp @@ -227,6 +227,7 @@ extern cvar_t avh_uplink; extern cvar_t avh_gametime; extern cvar_t avh_ironman; extern cvar_t avh_mapvoteratio; +extern cvar_t avh_structurelimit; BOOL IsSpawnPointValid( CBaseEntity *pPlayer, CBaseEntity *pSpot ); inline int FNullEnt( CBaseEntity *ent ) { return (ent == NULL) || FNullEnt( ent->edict() ); } @@ -1766,6 +1767,14 @@ void AvHGamerules::PlayerGotWeapon(CBasePlayer *pPlayer, CBasePlayerItem *pWeapo } } +int AvHGamerules::GetStructureLimit() +{ + if (GetGameRules()->GetIsTournamentMode()) + return 300; + else + return avh_structurelimit.value; +} + Vector AvHGamerules::GetSpawnAreaCenter(AvHTeamNumber inTeamNumber) const { Vector theCenter(0, 0, 0); diff --git a/releases/3.2.0/source/mod/AvHGamerules.h b/releases/3.2.0/source/mod/AvHGamerules.h index 397e4372..963691bf 100644 --- a/releases/3.2.0/source/mod/AvHGamerules.h +++ b/releases/3.2.0/source/mod/AvHGamerules.h @@ -288,6 +288,8 @@ public: bool GetIsGameInReset() {return this->mGameInReset; }; + int GetStructureLimit(); + protected: void AutoAssignPlayer(AvHPlayer* inPlayer); void PerformMapValidityCheck(); diff --git a/releases/3.2.0/source/mod/AvHPlayer.cpp b/releases/3.2.0/source/mod/AvHPlayer.cpp index 7ac2dfd2..972261cb 100644 --- a/releases/3.2.0/source/mod/AvHPlayer.cpp +++ b/releases/3.2.0/source/mod/AvHPlayer.cpp @@ -270,8 +270,6 @@ extern int gWeaponAnimationEventID; extern int gMetabolizeSuccessEventID; extern int gPhaseInEventID; -extern cvar_t avh_structurelimit; - // Yucky globals extern AvHParticleTemplateListServer gParticleTemplateList; extern AvHSoundListManager gSoundListManager; @@ -492,7 +490,7 @@ bool AvHPlayer::AttemptToBuildAlienStructure(AvHMessageID inMessageID) // Check if collision point is valid for building if(AvHSHUGetIsSiteValidForBuild(inMessageID, &theLocation)) { - if (theNumBuildings < avh_structurelimit.value) + if (theNumBuildings < GetGameRules()->GetStructureLimit()) { // Make sure there aren't too many buildings in this area already int theNumBuildingsNearby = UTIL_CountEntitiesInSphere(theLocation, BALANCE_VAR(kBuildingVisibilityRadius), theClassName); @@ -604,7 +602,7 @@ bool AvHPlayer::BuildTech(AvHMessageID inBuildID, const Vector& inPickRay) // Make sure we haven't exceeded the structure limit int theNumBuildings = AvHSUGetStructureCount(inBuildID); - if(theNumBuildings < avh_structurelimit.value) + if(theNumBuildings < GetGameRules()->GetStructureLimit()) { if(theNumFriendlyEntitiesInArea < BALANCE_VAR(kMaxMarineEntitiesAllowedInRadius)) {