Add some logging, fix som bugs

This commit is contained in:
Ottermandias 2023-04-15 20:38:02 +02:00
parent 85fb98b557
commit 9037166d92
12 changed files with 58 additions and 41 deletions

View file

@ -6,7 +6,6 @@ using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using Penumbra.Interop.Structs;
using Penumbra.Meta.Files;
using Penumbra.Meta.Manipulations;
@ -19,7 +18,7 @@ namespace Penumbra.Collections;
public partial class ModCollection
{
// Only active collections need to have a cache.
internal ModCollectionCache? _cache;
internal CollectionCache? _cache;
public bool HasCache
=> _cache != null;