Skip to content

Commit

Permalink
Remove AtB limitations on map adornments for Great hiring halls
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronGullickson committed Feb 10, 2025
1 parent 45ea317 commit 3a72e9b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions MekHQ/src/mekhq/gui/InterstellarMapPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -734,8 +734,7 @@ protected void paintComponent(Graphics g) {
360.0 * (1 - ((double) i) / factions.size()), Arc2D.OPEN);
g2.fill(arc);
} else {
if (campaign.getCampaignOptions().isUseAtB()
&& (system.getHiringHallLevel(campaign.getLocalDate()) == HiringHallLevel.GREAT)) {
if (system.getHiringHallLevel(campaign.getLocalDate()) == HiringHallLevel.GREAT) {
g2.setPaint(new Color(176, 196, 222));
arc.setArcByCenter(x, y, size + 5, 0,
360.0 * (1 - ((double) i) / factions.size()), Arc2D.OPEN);
Expand Down

0 comments on commit 3a72e9b

Please sign in to comment.