Skip to content

Commit

Permalink
Fix weird capitalization on an error message
Browse files Browse the repository at this point in the history
  • Loading branch information
asvitkine committed Sep 30, 2023
1 parent d1cda32 commit f593366
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ private String canProduce(
if (howManyOfEachConstructionCanPlace(to, producer, testUnits, player).totalValues() > 0) {
return null;
}
return "No more Constructions Allowed in " + producer.getName();
return "No more constructions allowed in " + producer.getName();
}
// check we haven't just put a factory there (should we be checking producer?)
if (getAlreadyProduced(producer).stream().anyMatch(Matches.unitCanProduceUnits())
Expand Down

0 comments on commit f593366

Please sign in to comment.