mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-15 13:14:17 +01:00
Turn Collections to List instead of Dict.
This commit is contained in:
parent
9c0fc8a8c7
commit
519543772c
9 changed files with 50 additions and 36 deletions
|
|
@ -214,7 +214,7 @@ public class Penumbra : IDalamudPlugin
|
|||
|
||||
var collection = string.Equals( collectionName, ModCollection.Empty.Name, StringComparison.InvariantCultureIgnoreCase )
|
||||
? ModCollection.Empty
|
||||
: CollectionManager.Collections.Values.FirstOrDefault( c
|
||||
: CollectionManager.Collections.FirstOrDefault( c
|
||||
=> string.Equals( c.Name, collectionName, StringComparison.InvariantCultureIgnoreCase ) );
|
||||
if( collection == null )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue