Skip to content

Commit

Permalink
Correct grammar in House Buying history
Browse files Browse the repository at this point in the history
  • Loading branch information
AntumDeluge committed May 29, 2024
1 parent 057afa5 commit bcedeca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public LinkedList<String> getHistory(final Player player) {
if(playerHousePortal!=null) {
int unpaidPeriods = houseTax.getUnpaidTaxPeriods(player);
if (unpaidPeriods>0) {
hist.add("I owe " + Grammar.quantityplnoun(unpaidPeriods, "month", "one") + " worth of tax.");
hist.add("I owe " + Grammar.quantityplnounPossessive(unpaidPeriods, "month", "one") + " worth of taxes.");
} else {
hist.add("I am up to date with my house tax payments.");
}
Expand Down

0 comments on commit bcedeca

Please sign in to comment.