Skip to content

Commit

Permalink
Merge pull request #5157 from IllianiCBT/stratCon_supportPointsReinforce
Browse files Browse the repository at this point in the history
Fixed StratCon Reinforcement Deployment Check
  • Loading branch information
HammerGS authored Nov 4, 2024
2 parents c6bbbe3 + eec36ba commit 0d7d076
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions MekHQ/src/mekhq/campaign/stratcon/StratconRulesManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -1526,9 +1526,8 @@ public static ReinforcementEligibilityType getReinforcementType(int forceID, Str
return ReinforcementEligibilityType.FightLance;
}

// otherwise, the force requires support points / vps to deploy
if ((campaignState.getSupportPoints() > 0) ||
(campaignState.getVictoryPoints() > 0)) {
// otherwise, the force requires support points to deploy
if (campaignState.getSupportPoints() > 0) {
return ReinforcementEligibilityType.SupportPoint;
}

Expand Down

0 comments on commit 0d7d076

Please sign in to comment.