Change CollectionCache handling.

This commit is contained in:
Ottermandias 2023-05-01 18:43:49 +02:00
parent 7ab5c7311c
commit c2fb18ab53
4 changed files with 63 additions and 62 deletions

View file

@ -225,8 +225,8 @@ public class Penumbra : IDalamudPlugin
foreach (var (name, id, collection) in _collectionManager.Active.Individuals.Assignments)
sb.Append($"> **`{id[0].Incognito(name) + ':',-30}`** {collection.AnonymizedName}\n");
foreach (var (collection, cache) in _collectionManager.Caches.Active)
PrintCollection(collection, cache);
foreach (var collection in _collectionManager.Caches.Active)
PrintCollection(collection, collection._cache!);
return sb.ToString();
}