From 201595a19d9e1c7df7e5733b166c827d2e6205ca Mon Sep 17 00:00:00 2001 From: Turbo Date: Thu, 2 May 2024 14:47:37 -0500 Subject: [PATCH] Change grammar in farming from 'is' to 'are' (#5785) --- src/lib/tickers.ts | 2 +- src/lib/util/farmingHelpers.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/tickers.ts b/src/lib/tickers.ts index 1e20107cb5..93ed2c0e2a 100644 --- a/src/lib/tickers.ts +++ b/src/lib/tickers.ts @@ -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); diff --git a/src/lib/util/farmingHelpers.ts b/src/lib/util/farmingHelpers.ts index 81cab274a7..a9fa695342 100644 --- a/src/lib/util/farmingHelpers.ts +++ b/src/lib/util/farmingHelpers.ts @@ -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} ${