From 5bd50e1e710e1a4ffb8af9c1188c3bf2fb48a57d Mon Sep 17 00:00:00 2001 From: surskitty Date: Thu, 27 Feb 2025 12:21:09 -0500 Subject: [PATCH] Fixing grammar of Berry Tree strings (#6355) --- src/berry.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/berry.c b/src/berry.c index 4730799e0c..fd6cac9679 100644 --- a/src/berry.c +++ b/src/berry.c @@ -2174,6 +2174,11 @@ void ObjectEventInteractionGetBerryCountString(void) u8 berry = GetBerryTypeByBerryTreeId(treeId); u8 count = GetBerryCountByBerryTreeId(treeId); + // The strings for growing Berries all refer to a singular berry plant. + // This ensures that text about planting a Berry and the growing Berry reads correctly. + if (GetStageByBerryTreeId(treeId) != BERRY_STAGE_BERRIES) + count = 1; + gSpecialVar_0x8006 = BerryTypeToItemId(berry); CopyItemNameHandlePlural(BerryTypeToItemId(berry), gStringVar1, count); berry = GetTreeMutationValue(treeId);