mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-22 20:13:06 +00:00
Next seed if activation fails
ty santacrab for pointing this out
This commit is contained in:
parent
1faef958a7
commit
84363eb8eb
3 changed files with 9 additions and 0 deletions
|
@ -22,7 +22,10 @@ public static class GenerateMethodH
|
|||
{
|
||||
var check = new LeadSeed(seed, LeadRequired.None);
|
||||
if (!MethodH.CheckEncounterActivation(enc, ref check))
|
||||
{
|
||||
seed = LCRNG.Next(seed);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
var esv = LCRNG.Next16(ref seed) % 100;
|
||||
if (esv < min || esv > max)
|
||||
|
|
|
@ -32,7 +32,10 @@ public static class GenerateMethodJ
|
|||
{
|
||||
var check = new LeadSeed(seed, LeadRequired.None);
|
||||
if (!MethodJ.CheckEncounterActivation(enc, ref check))
|
||||
{
|
||||
seed = LCRNG.Next(seed);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
var esv = LCRNG.Next16(ref seed) / 656;
|
||||
if (esv < min || esv > max)
|
||||
|
|
|
@ -33,7 +33,10 @@ public static class GenerateMethodK
|
|||
{
|
||||
var check = new LeadSeed(seed, LeadRequired.None);
|
||||
if (!MethodK.CheckEncounterActivation(enc, ref check))
|
||||
{
|
||||
seed = LCRNG.Next(seed);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
var esv = LCRNG.Next16(ref seed) % modulo;
|
||||
if (esv < min || esv > max)
|
||||
|
|
Loading…
Reference in a new issue