mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-11 01:15:17 -05:00
fix crystal gender flagging
C->GS->Gen7 keeps female OT but gives GS version also fixes wrong logic path for format2 thanks randomdice101
This commit is contained in:
@@ -651,7 +651,7 @@ private void VerifyG1OT()
|
||||
AddLine(Severity.Invalid, V39, CheckIdentifier.Trainer);
|
||||
}
|
||||
|
||||
if (pkm.OT_Gender == 1 && (pkm.Format == 2 && pkm.Met_Location == 0 || pkm.Version != (int)GameVersion.C))
|
||||
if (pkm.OT_Gender == 1 && pkm.Format == 2 && pkm.Met_Location == 0)
|
||||
AddLine(Severity.Invalid, V408, CheckIdentifier.Trainer);
|
||||
}
|
||||
private void VerifyG1OTWithinBounds(string str)
|
||||
|
||||
Reference in New Issue
Block a user