From c56ba766015d3feaa144341682ad0c2e995a1f14 Mon Sep 17 00:00:00 2001 From: Kurt Date: Mon, 12 Apr 2021 19:14:23 -0700 Subject: [PATCH] Expand jp table too 6754645a5f76e0d9f1f2282c0575fe32d9c43617 --- PKHeX.Core/PKM/Strings/StringConverter3.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/PKHeX.Core/PKM/Strings/StringConverter3.cs b/PKHeX.Core/PKM/Strings/StringConverter3.cs index 7b42cf2c6..8b9c16d03 100644 --- a/PKHeX.Core/PKM/Strings/StringConverter3.cs +++ b/PKHeX.Core/PKM/Strings/StringConverter3.cs @@ -181,6 +181,9 @@ namespace PKHeX.Core 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', // D 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', // E ':', 'Ä', 'Ö', 'Ü', 'ä', 'ö', 'ü', // F + + // Make the total length 256 so that any byte access is always within the array + Terminator, Terminator, Terminator, Terminator, Terminator, Terminator, Terminator, Terminator, Terminator }; } -} \ No newline at end of file +}