mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
Fix min egg hatch ctr for pk8/pk9
Oops, 8 instead 9.
This commit is contained in:
parent
6993f9d661
commit
1c93d601a4
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ public static class EggStateLegality
|
|||
/// <returns>Usually 0...</returns>
|
||||
public static int GetMinimumEggHatchCycles(PKM pk) => pk switch
|
||||
{
|
||||
PK2 or PB8 or PK8 => 1, // no grace period between 1 step remaining and hatch
|
||||
PK2 or PB8 or PK9 => 1, // no grace period between 1 step remaining and hatch
|
||||
_ => 0, // having several Eggs in your party and then hatching one will give the rest 0... they can then be boxed!
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue