From 876cea75de0ae20575b434ceed54fae0f8c6ccbb Mon Sep 17 00:00:00 2001 From: Greg Edwards Date: Wed, 28 Sep 2022 01:14:36 -0400 Subject: [PATCH] GenV trendy phrase rendering fix --- library/Support/TrendyPhrase5.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/Support/TrendyPhrase5.cs b/library/Support/TrendyPhrase5.cs index c4b82ed1..ffc073ab 100644 --- a/library/Support/TrendyPhrase5.cs +++ b/library/Support/TrendyPhrase5.cs @@ -69,6 +69,7 @@ namespace PkmnFoundations.Support if (word < 1732) return WORDS_CONNECTION[word - 1706]; if (word < 1742) return WORDS_ANIMATED[word - 1732]; if (word < 1803) return WORDS_VOICE[word - 1742]; + if (word == 65535) return ""; // special case for unfilled in word = blank return "POKÉMON"; }