Update EncounterSlot9.cs

This commit is contained in:
Kurt 2023-12-21 16:50:14 -08:00
parent 2a13874aee
commit 9f1ad9f6fc

View file

@ -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)
{