diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-11-06 14:06:06 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-11-06 17:01:23 -0600 |
commit | fbc3eee1f2a432d497e1213aef3b6b7b369ec871 (patch) | |
tree | b3bef776f565321e377c3bdcd520c5318eb6eda9 /src | |
parent | 7d5d12877ef14d693602f0dec543b4c262677808 (diff) |
Document Fossil Maniac and Berry Master route houses
Diffstat (limited to 'src')
-rw-r--r-- | src/easy_chat.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/easy_chat.c b/src/easy_chat.c index 05f51ed4e..ce5fe3c7a 100644 --- a/src/easy_chat.c +++ b/src/easy_chat.c @@ -532,11 +532,11 @@ static const u16 sMysteryGiftPhrase[] = { }; static const u16 sBerryMasterWifePhrases[][2] = { - {EC_WORD_GREAT, EC_WORD_BATTLE}, - {EC_WORD_CHALLENGE, EC_WORD_CONTEST}, - {EC_WORD_OVERWHELMING, EC_POKEMON(LATIAS)}, - {EC_WORD_COOL, EC_POKEMON(LATIOS)}, - {EC_WORD_SUPER, EC_WORD_HUSTLE}, + [PHRASE_GREAT_BATTLE - 1] = {EC_WORD_GREAT, EC_WORD_BATTLE}, + [PHRASE_CHALLENGE_CONTEST - 1] = {EC_WORD_CHALLENGE, EC_WORD_CONTEST}, + [PHRASE_OVERWHELMING_LATIAS - 1] = {EC_WORD_OVERWHELMING, EC_POKEMON(LATIAS)}, + [PHRASE_COOL_LATIOS - 1] = {EC_WORD_COOL, EC_POKEMON(LATIOS)}, + [PHRASE_SUPER_HUSTLE - 1] = {EC_WORD_SUPER, EC_WORD_HUSTLE}, }; static const u16 sEasyChatTriangleCursorPalette[] = INCBIN_U16("graphics/easy_chat/triangle_cursor.gbapal"); |