Skip to content

Commit

Permalink
Revert a logic change.
Browse files Browse the repository at this point in the history
  • Loading branch information
asvitkine committed Oct 2, 2023
1 parent 5e7170b commit 53dbe00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ private IBattle selectBombardingBattle(
if (battles.size() == 1) {
return CollectionUtils.getAny(battles);
}
final Set<Territory> territories = new HashSet<>();
final List<Territory> territories = new ArrayList<>();
final Map<Territory, IBattle> battleTerritories = new HashMap<>();
for (final IBattle battle : battles) {
// If Restricted & # of bombarding units => landing units, don't add territory to list to
Expand Down

0 comments on commit 53dbe00

Please sign in to comment.