mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
Fix traded egg modification
Correct date values are now updated
regarding 8af8602
, reported via pm on reddit
This commit is contained in:
parent
637c971725
commit
4369ee0735
2 changed files with 6 additions and 6 deletions
|
@ -582,9 +582,9 @@ namespace PKHeX
|
|||
private void UpdateEgg(int Day, int Month, int Year)
|
||||
{
|
||||
Met_Location = 30002;
|
||||
Egg_Day = Day;
|
||||
Egg_Month = Month;
|
||||
Egg_Year = Year - 2000;
|
||||
Met_Day = Day;
|
||||
Met_Month = Month;
|
||||
Met_Year = Year - 2000;
|
||||
}
|
||||
private void TradeGeoLocation(int GeoCountry, int GeoRegion)
|
||||
{
|
||||
|
|
|
@ -627,9 +627,9 @@ namespace PKHeX
|
|||
private void UpdateEgg(int Day, int Month, int Year)
|
||||
{
|
||||
Met_Location = 30002;
|
||||
Egg_Day = Day;
|
||||
Egg_Month = Month;
|
||||
Egg_Year = Year - 2000;
|
||||
Met_Day = Day;
|
||||
Met_Month = Month;
|
||||
Met_Year = Year - 2000;
|
||||
}
|
||||
private void TradeGeoLocation(int GeoCountry, int GeoRegion)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue