mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
Fix oopsie
partially reverted change forgot to undo adding these
This commit is contained in:
parent
06720dec83
commit
6c6d02fad2
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ public sealed class LearnGroup8a : ILearnGroup
|
|||
|
||||
var home = LearnGroupHOME.Instance;
|
||||
if (option != LearnOption.HOME && home.HasVisited(pk, history))
|
||||
return home.Check(result, current, pk, history, enc, types, option);
|
||||
return home.Check(result, current, pk, history, enc, types);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ public sealed class LearnGroup8b : ILearnGroup
|
|||
|
||||
var home = LearnGroupHOME.Instance;
|
||||
if (option != LearnOption.HOME && home.HasVisited(pk, history))
|
||||
return home.Check(result, current, pk, history, enc, types, option);
|
||||
return home.Check(result, current, pk, history, enc, types);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue