Update IHyperTrain.cs

This commit is contained in:
Kurt 2023-12-20 14:20:37 -08:00
parent 5da1ae4849
commit fb87e9645a

View file

@ -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)"/>