Add date copy $suggest

This commit is contained in:
Kurt 2020-04-13 09:23:31 -07:00
parent 76e1f70b9e
commit 49bdfa7f9d

View file

@ -368,6 +368,14 @@ namespace PKHeX.Core
pb7.WeightAbsolute = pb7.CalcWeightAbsolute; pb7.WeightAbsolute = pb7.CalcWeightAbsolute;
return ModifyResult.Modified; return ModifyResult.Modified;
// Date Copy
case nameof(PKM.EggMetDate):
pk.EggMetDate = pk.MetDate;
return ModifyResult.Modified;
case nameof(PKM.MetDate):
pk.MetDate = pk.EggMetDate;
return ModifyResult.Modified;
case nameof(PKM.Nature) when pk.Format >= 8: case nameof(PKM.Nature) when pk.Format >= 8:
pk.Nature = pk.StatNature; pk.Nature = pk.StatNature;
return ModifyResult.Modified; return ModifyResult.Modified;