mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Remove doubled skip from collection listing.
This commit is contained in:
parent
0239c2f60b
commit
e716bbbc01
1 changed files with 1 additions and 1 deletions
|
|
@ -431,7 +431,7 @@ public class PenumbraApi : IDisposable, IPenumbraApi
|
||||||
public IList< string > GetCollections()
|
public IList< string > GetCollections()
|
||||||
{
|
{
|
||||||
CheckInitialized();
|
CheckInitialized();
|
||||||
return Penumbra.CollectionManager.Skip( 1 ).Select( c => c.Name ).ToArray();
|
return Penumbra.CollectionManager.Select( c => c.Name ).ToArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
public string GetCurrentCollection()
|
public string GetCurrentCollection()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue