mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-20 14:57:45 +01:00
Return IReadOnlyList instead of ReadOnlySpan
This commit is contained in:
parent
bcf651b5c1
commit
2cf869872d
2 changed files with 7 additions and 3 deletions
|
|
@ -1,3 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
using Dalamud.Data;
|
||||
using Dalamud.IoC;
|
||||
using Dalamud.IoC.Internal;
|
||||
|
|
@ -118,7 +120,7 @@ internal unsafe class PlayerState : IServiceType, IPlayerState
|
|||
public RowRef<Aetheryte> HomeAetheryte => this.IsLoaded ? LuminaUtils.CreateRef<Aetheryte>(CSPlayerState.Instance()->HomeAetheryteId) : default;
|
||||
|
||||
/// <inheritdoc/>
|
||||
public ReadOnlySpan<RowRef<Aetheryte>> FavoriteAetherytes
|
||||
public IReadOnlyList<RowRef<Aetheryte>> FavoriteAetherytes
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue