Skip to content

Commit

Permalink
Adjust cargo divider for resupply tonnage calculation
Browse files Browse the repository at this point in the history
Increased the cargo divider from 250 to 300 to refine the tonnage allowance calculation. This change improves accuracy in resupply estimations, aligning it better with target values.
  • Loading branch information
IllianiCBT committed Dec 11, 2024
1 parent 5c49153 commit 6627fed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ private static int calculateTargetCargoTonnage(Campaign campaign, AtBContract co
double tonnageAllowance = meanTonnage * Math.min(unitAllowance, unitCount);

// This divider gives us our target value of 5t per average IS Company
final int CARGO_DIVIDER = 250;
final int CARGO_DIVIDER = 300;

double adjustedTonnage = tonnageAllowance / CARGO_DIVIDER;

Expand Down

0 comments on commit 6627fed

Please sign in to comment.