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:
Kurt
2017-12-05 14:43:02 -08:00
parent f3cc29df57
commit 88f67ebd36

View File

@@ -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)