Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactored autoAwards Kill Handling for Improved Reliability #4539

Merged
merged 9 commits into from
Aug 8, 2024
Prev Previous commit
Next Next commit
Merge branch 'refs/heads/master' into autoAwards_formationReading
# Conflicts:
#	MekHQ/src/mekhq/campaign/personnel/autoAwards/AutoAwardsController.java
IllianiCBT committed Aug 2, 2024
commit 2132d83d618ed3881abbf783f568d59eb3082c9d
Original file line number Diff line number Diff line change
@@ -299,6 +299,11 @@ private void buildAwardLists(int awardListCase) {

for (String setName : allSetNames) {
if (!allSetNames.isEmpty()) {
if (Arrays.asList(filterList).contains(setName)) {
logger.info("'{}' was found in the list of sets to be ignored. Ignoring it.", setName);
continue;
}

logger.info("Getting all awards from set: {}", setName);

awards.addAll(AwardsFactory.getInstance().getAllAwardsForSet(setName));
You are viewing a condensed version of this merge commit. You can view the full changes here.