mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-11 07:04:16 +00:00
recognize gen12 italian trade OT
https://projectpokemon.org/home/forums/topic/46143-bug-in-last-update/?page=3 Thanks ThePunish3D!
This commit is contained in:
parent
e99c9a0999
commit
bd6494d8c7
2 changed files with 1 additions and 1 deletions
|
@ -348,7 +348,7 @@ namespace PKHeX.Core
|
|||
|
||||
const int start = (int)LanguageID.English;
|
||||
const int end = (int)LanguageID.Italian;
|
||||
var index = Array.FindIndex(TrainerNames, start, end - start, w => w == OT);
|
||||
var index = Array.FindIndex(TrainerNames, start, end - start + 1, w => w == OT);
|
||||
return index >= 0;
|
||||
}
|
||||
}
|
||||
|
|
Binary file not shown.
Loading…
Reference in a new issue