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 +}