Use IndividualCollections in PathResolver.

This commit is contained in:
Ottermandias 2022-11-17 15:22:31 +01:00
parent f8c0702432
commit 6a6eac1c3b
10 changed files with 128 additions and 245 deletions

View file

@ -332,7 +332,7 @@ public class Penumbra : IDalamudPlugin
}
string? characterName = null;
if( type is CollectionType.Character )
if( type is CollectionType.Individual )
{
var split = collectionName.Split( '|', 2, StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries );
if( split.Length < 2 || split[ 0 ].Length == 0 || split[ 1 ].Length == 0 )
@ -368,7 +368,7 @@ public class Penumbra : IDalamudPlugin
{
CollectionManager.CreateSpecialCollection( type );
}
else if( type is CollectionType.Character )
else if( type is CollectionType.Individual )
{
CollectionManager.CreateCharacterCollection( characterName! );
}