Skip to content

Commit

Permalink
Change grammar in farming from 'is' to 'are' (#5785)
Browse files Browse the repository at this point in the history
  • Loading branch information
I-am-TURBO authored May 2, 2024
1 parent 858bd9e commit 201595a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/tickers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ WHERE bitfield && '{2,3,4,5,6,7,8,12,21,24}'::int[] AND user_stats."last_daily_t
if (!user) continue;
const message = await user
.send({
content: `The ${planted.name} planted in your ${patchType} patches is ready to be harvested!`,
content: `The ${planted.name} planted in your ${patchType} patches are ready to be harvested!`,
components: [farmingReminderButtons]
})
.catch(noOp);
Expand Down
2 changes: 1 addition & 1 deletion src/lib/util/farmingHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function findPlant(lastPlanted: IPatchData['lastPlanted']) {
export function userGrowingProgressStr(patchesDetailed: IPatchDataDetailed[]): BaseMessageOptions {
let str = '';
for (const patch of patchesDetailed.filter(i => i.ready === true)) {
str += `${Emoji.Tick} **${patch.friendlyName}**: ${patch.lastQuantity} ${patch.lastPlanted} is ready to be harvested!\n`;
str += `${Emoji.Tick} **${patch.friendlyName}**: ${patch.lastQuantity} ${patch.lastPlanted} are ready to be harvested!\n`;
}
for (const patch of patchesDetailed.filter(i => i.ready === false)) {
str += `${Emoji.Stopwatch} **${patch.friendlyName}**: ${patch.lastQuantity} ${
Expand Down

0 comments on commit 201595a

Please sign in to comment.