mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 22:10:21 +00:00
Add date copy $suggest
This commit is contained in:
parent
76e1f70b9e
commit
49bdfa7f9d
1 changed files with 8 additions and 0 deletions
|
@ -368,6 +368,14 @@ namespace PKHeX.Core
|
|||
pb7.WeightAbsolute = pb7.CalcWeightAbsolute;
|
||||
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:
|
||||
pk.Nature = pk.StatNature;
|
||||
return ModifyResult.Modified;
|
||||
|
|
Loading…
Reference in a new issue