mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 22:10:21 +00:00
parent
0e1fd49be1
commit
bdf6afd2f3
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,7 @@ namespace PKHeX.Core
|
|||
if (TID != -1 && TID != pkm.TID) return false;
|
||||
if (OT_Gender < 3 && OT_Gender != pkm.OT_Gender) return false;
|
||||
var wcOT = OT_Name;
|
||||
if (wcOT != null)
|
||||
if (!string.IsNullOrEmpty(wcOT))
|
||||
{
|
||||
if (wcOT.Length > 7) // Colosseum Mattle Ho-Oh
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue