mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Fix year check
still testing
This commit is contained in:
parent
0ba2f6a53a
commit
d7dc69104b
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ namespace PKHeX.Core
|
|||
yield break;
|
||||
|
||||
var ball = (Ball)pkm.Ball;
|
||||
var stamp = EncounterSlot8GO.GetTimeStamp(pkm.Met_Year, pkm.Met_Month, pkm.Met_Day);
|
||||
var stamp = EncounterSlot8GO.GetTimeStamp(pkm.Met_Year + 2000, pkm.Met_Month, pkm.Met_Day);
|
||||
foreach (var s in Slots)
|
||||
{
|
||||
var slot = (EncounterSlot8GO)s;
|
||||
|
|
Loading…
Add table
Reference in a new issue