mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 05:50:22 +00:00
Update EncounterSlot9.cs
This commit is contained in:
parent
2a13874aee
commit
9f1ad9f6fc
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ public sealed record EncounterSlot9(EncounterArea9 Parent, ushort Species, byte
|
|||
_ => 4,
|
||||
};
|
||||
|
||||
public bool CanSpawnAtTime(RibbonIndex mark) => Time == 0 || (Time & (1 << GetTime(mark))) != 0;
|
||||
public bool CanSpawnAtTime(RibbonIndex mark) => (Time & (1 << GetTime(mark))) == 0;
|
||||
|
||||
public bool CanSpawnInWeather(RibbonIndex mark)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue