mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-03 06:13:45 +01:00
Increment the collection change counter when character utility is ready.
This commit is contained in:
parent
9115cbaac1
commit
f984283231
2 changed files with 18 additions and 5 deletions
|
|
@ -24,7 +24,6 @@ public partial class MetaManager : IDisposable, IEnumerable< KeyValuePair< MetaM
|
|||
public IReadOnlyCollection< MetaManipulation > Manipulations
|
||||
=> _manipulations.Keys;
|
||||
|
||||
|
||||
public IEnumerator< KeyValuePair< MetaManipulation, IMod > > GetEnumerator()
|
||||
=> _manipulations.GetEnumerator();
|
||||
|
||||
|
|
@ -35,7 +34,10 @@ public partial class MetaManager : IDisposable, IEnumerable< KeyValuePair< MetaM
|
|||
{
|
||||
_collection = collection;
|
||||
SetupImcDelegate();
|
||||
Penumbra.CharacterUtility.LoadingFinished += ApplyStoredManipulations;
|
||||
if( !Penumbra.CharacterUtility.Ready )
|
||||
{
|
||||
Penumbra.CharacterUtility.LoadingFinished += ApplyStoredManipulations;
|
||||
}
|
||||
}
|
||||
|
||||
public void SetFiles()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue