mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Fix incorrect method call
Copypasta oops, previous commit at fault.
This commit is contained in:
parent
5cfaf7eecd
commit
44c8e772a3
2 changed files with 3 additions and 3 deletions
|
@ -689,13 +689,13 @@ public static class MethodFinder
|
|||
Debug.Assert(rand3 >> 15 == 0);
|
||||
rand1 <<= 16;
|
||||
rand3 <<= 16;
|
||||
var attempt1 = method.RecoverLower16Bits(rand1, rand3);
|
||||
var attempt1 = method.RecoverLower16BitsGap(rand1, rand3);
|
||||
foreach (var z in attempt1)
|
||||
{
|
||||
yield return z;
|
||||
yield return z ^ 0x80000000; // sister bitflip
|
||||
}
|
||||
var attempt2 = method.RecoverLower16Bits(rand1, rand3 ^ 0x80000000);
|
||||
var attempt2 = method.RecoverLower16BitsGap(rand1, rand3 ^ 0x80000000);
|
||||
foreach (var z in attempt2)
|
||||
{
|
||||
yield return z;
|
||||
|
|
|
@ -65,7 +65,7 @@ public class PIDIVTest
|
|||
Assert.Equal(pk3.PID, gk3.PID);
|
||||
Assert.True(pk3.IVs.SequenceEqual(gk3.IVs), "Unable to match generated IVs to CXD spread");
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void PIDIVMatchingTest3MiscChannel()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue