From 369efc12083b596662ab08141588ee0bc8de39bd Mon Sep 17 00:00:00 2001 From: Bassoonian Date: Sun, 4 Aug 2024 01:15:36 +0100 Subject: [PATCH] Fix two small text errors in follower dialogue --- src/data/text/follower_messages.h | 2 +- src/follower_helper.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/text/follower_messages.h b/src/data/text/follower_messages.h index 7678992f22..1564d0ad7b 100644 --- a/src/data/text/follower_messages.h +++ b/src/data/text/follower_messages.h @@ -134,7 +134,7 @@ const struct FollowerMsgInfo gFollowerUpsetMessages[] = { // Unconditional angry messages static const u8 sAngryMsg00[] = _("{STR_VAR_1} let out a roar!"); -static const u8 sAngryMsg01[] = _("{STR_VAR_1} is making a face like\nits angry!"); +static const u8 sAngryMsg01[] = _("{STR_VAR_1} is making a face like\nit's angry!"); static const u8 sAngryMsg02[] = _("{STR_VAR_1} seems to be angry for\nsome reason."); static const u8 sAngryMsg03[] = _("Your POKéMON turned to face the\nother way, showing a defiant face."); static const u8 sAngryMsg04[] = _("{STR_VAR_1} cried out."); diff --git a/src/follower_helper.c b/src/follower_helper.c index b2f44e7d1a..be52877c5f 100644 --- a/src/follower_helper.c +++ b/src/follower_helper.c @@ -54,7 +54,7 @@ static const u8* const sFearTexts[] = {sCondMsg29, sCondMsg30, NULL}; static const u8 sCondMsg31[] = _("{STR_VAR_1} is taking shelter in the\ngrass from the rain."); static const u8 sCondMsg32[] = _("{STR_VAR_1} seems very cold."); static const u8 sCondMsg33[] = _("{STR_VAR_1} is staring at the sea."); -static const u8 sCondMsg34[] = _("Your pokemon is staring intently at\nthe sea!"); +static const u8 sCondMsg34[] = _("Your POKéMON is staring intently at\nthe sea!"); static const u8 sCondMsg35[] = _("{STR_VAR_1} is looking at the\nsurging sea."); static const u8* const sSeaTexts[] = {sCondMsg33, sCondMsg34, sCondMsg35, NULL}; static const u8 sCondMsg36[] = _("{STR_VAR_1} is listening to the\nsound of the waterfall.");