Skip to content

Commit

Permalink
Fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
UlyssesSockdrawer committed Oct 10, 2024
1 parent be86d37 commit 1b2d0ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public Map<UUID, TargetRoll> getTargetNumbers(final @Nullable Mission mission, f
long monthsBetween = ChronoUnit.MONTHS.between(lastPromotionDate, today);

if (monthsBetween <= 6) {
targetNumber.addModifier(- 1, resources.getString("recentpromotion.text"))
targetNumber.addModifier(- 1, resources.getString("recentpromotion.text"));
}
}

Expand Down

0 comments on commit 1b2d0ae

Please sign in to comment.