mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-21 19:43:06 +00:00
Update EncounterCriteria.cs
This commit is contained in:
parent
594d133fae
commit
c30a335404
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ public sealed record EncounterCriteria : IFixedNature, IFixedAbilityNumber, IShi
|
|||
private const int RandomIV = -1;
|
||||
|
||||
public bool IsSpecifiedNature() => Nature != Nature.Random;
|
||||
public bool IsSpecifiedLevelRange() => LevelMin != 0;
|
||||
public bool IsSpecifiedLevelRange() => LevelMax != 0;
|
||||
public bool IsSpecifiedTeraType() => TeraType != -1;
|
||||
|
||||
public bool IsSpecifiedIVs() => IV_HP != RandomIV
|
||||
|
|
Loading…
Reference in a new issue