Fix min egg hatch ctr for pk8/pk9

Oops, 8 instead 9.
This commit is contained in:
Kurt 2022-11-24 19:15:19 -08:00
parent 6993f9d661
commit 1c93d601a4

View file

@ -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!
};