Skip to content

Commit

Permalink
Adjust ally ratios for HOUSE and INTEGRATED command rights
Browse files Browse the repository at this point in the history
Updated the HOUSE ally ratio to match the player's (G)BV budget and INTEGRATED ratio to double the player's budget. This change aligns the ratios more accurately with the intended gameplay balance adjustments.
  • Loading branch information
IllianiCBT committed Nov 19, 2024
1 parent 9d560a7 commit 1d0f4da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MekHQ/src/mekhq/campaign/mission/AtBContract.java
Original file line number Diff line number Diff line change
Expand Up @@ -1793,8 +1793,8 @@ public int calculateContractDifficulty(Campaign campaign) {
double allyRatio = switch (getCommandRights()) {
case INDEPENDENT -> 0; // no allies
case LIAISON -> 0.4; // single allied heavy/assault mek, pure guess for now
case HOUSE -> 0.25; // allies with 25% of the player's (G)BV budget
case INTEGRATED -> 0.5; // allies with half the player's (G)BV budget
case HOUSE -> 0.25; // allies with same (G)BV budget
case INTEGRATED -> 0.5; // allies with twice the player's (G)BV budget
};

if (allyRatio > 0) {
Expand Down

0 comments on commit 1d0f4da

Please sign in to comment.