mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
Update IHyperTrain.cs
This commit is contained in:
parent
5da1ae4849
commit
fb87e9645a
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ public static partial class Extensions
|
|||
public static bool IsHyperTrainingAvailable(this EntityContext c, int currentLevel)
|
||||
{
|
||||
var min = GetHyperTrainMinLevel(c);
|
||||
return currentLevel <= min;
|
||||
return currentLevel >= min;
|
||||
}
|
||||
|
||||
/// <inheritdoc cref="GetHyperTrainMinLevel(IHyperTrain,EvolutionHistory, EntityContext)"/>
|
||||
|
|
Loading…
Reference in a new issue