Skip to content

Commit

Permalink
Forcing gradle to rebuild to test whether issue is with gradle or file
Browse files Browse the repository at this point in the history
  • Loading branch information
IllianiCBT committed Mar 31, 2024
1 parent 6627799 commit ef0ff24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MekHQ/src/mekhq/campaign/Campaign.java
Original file line number Diff line number Diff line change
Expand Up @@ -3187,7 +3187,7 @@ && getCampaignOptions().getRandomDependentMethod().isAgainstTheBot()
}
}

final int roll = MathUtility.clamp(Compute.d6(2) + getUnitRatingMod() - 2, 2, 12);
final int roll = MathUtility.clamp(Compute.d6(2) + getUnitRatingMod() - 2, 2, 12);

int change = numPersonnel * (roll - 5) / 100;
if (change < 0) {
Expand Down

0 comments on commit ef0ff24

Please sign in to comment.