Skip to content

Commit

Permalink
StratCon will No Longer Display GBV when Using FG3
Browse files Browse the repository at this point in the history
Changed the `forceStandardBattleValue` parameter from `false` to `true` to ensure accurate BV display in the Scenario Wizard Lance Renderer. This stops the StratCon force allocation windows from displaying GBV.
  • Loading branch information
IllianiCBT committed Nov 4, 2024
1 parent 31221ca commit dd55466
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public Component getListCellRendererComponent(final JList<? extends Force> list,
roleString = lance.getRole().toString() + ", ";
}

setText(String.format("%s (%sBV: %d)", value.getName(), roleString, value.getTotalBV(campaign, false)));
setText(String.format("%s (%sBV: %d)", value.getName(), roleString, value.getTotalBV(campaign, true)));

return this;
}
Expand Down

0 comments on commit dd55466

Please sign in to comment.