Fix oopsie

partially reverted change forgot to undo adding these
This commit is contained in:
Kurt 2023-07-16 20:42:51 -07:00
parent 06720dec83
commit 6c6d02fad2
2 changed files with 2 additions and 2 deletions

View file

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

View file

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