Took out 2nd MPB

This commit is contained in:
ChocoTaco1 2020-12-12 12:02:56 -05:00
parent 5565708efb
commit f873e97bd5
2 changed files with 282 additions and 289 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
// DefaultTurrets.cs
// Restore Default Turret count at the end of the match + MPB
// Restore Default Turret count at the end of the match
// Some maps in this map use non-default turret numbers
$DMP::indoorMinDef = $TeamDeployableMin[TurretIndoorDeployable];
@ -7,8 +7,6 @@ $DMP::outdoorMinDef = $TeamDeployableMin[TurretOutdoorDeployable];
$DMP::indoorMaxDef = $TeamDeployableMax[TurretIndoorDeployable];
$DMP::outdoorMaxDef = $TeamDeployableMax[TurretOutdoorDeployable];
$DMP::vehicleMPBMax = $VehicleMax[MobileBaseVehicle];
package turretDefaults
{
@ -20,8 +18,6 @@ function DefaultGame::gameOver( %game )
$TeamDeployableMin[TurretOutdoorDeployable] = $DMP::outdoorMinDef;
$TeamDeployableMax[TurretIndoorDeployable] = $DMP::indoorMaxDef;
$TeamDeployableMax[TurretOutdoorDeployable] = $DMP::outdoorMaxDef;
$VehicleMax[MobileBaseVehicle] = $DMP::vehicleMPBMax;
}
};