diff --git a/BetterPartyFinder/PartyFinder.cs b/BetterPartyFinder/PartyFinder.cs index e406e5e..a6c7873 100755 --- a/BetterPartyFinder/PartyFinder.cs +++ b/BetterPartyFinder/PartyFinder.cs @@ -20,7 +20,7 @@ namespace BetterPartyFinder { public ushort SecondsRemaining { get; } public ushort MinimumItemLevel { get; } public byte SlotsAvailable { get; } - public IReadOnlyCollection Slots => this._slots; + public IEnumerable Slots => this._slots; private readonly byte _objective; public ObjectiveFlags Objective => (ObjectiveFlags) this._objective; @@ -40,7 +40,7 @@ namespace BetterPartyFinder { private readonly PartyFinderSlot[] _slots; private readonly byte[] _jobsPresent; - internal IReadOnlyCollection RawJobsPresent => this._jobsPresent; + internal IEnumerable RawJobsPresent => this._jobsPresent; internal IReadOnlyCollection> JobsPresent { get; } public bool this[ObjectiveFlags flag] => this._objective == 0 || (this._objective & (uint) flag) > 0;