Slight modifications.

This commit is contained in:
Ottermandias 2022-01-31 22:38:28 +01:00
parent b6817c47ed
commit 685772e6ac
3 changed files with 16 additions and 19 deletions

View file

@ -70,6 +70,10 @@ public class Penumbra : IDalamudPlugin
gameUtils.ReloadResidentResources();
Api = new PenumbraApi( this );
Ipc = new PenumbraIpc( pluginInterface, Api );
SubscribeItemLinks();
SettingsInterface = new SettingsInterface( this );
if( Config.EnableHttpApi )
@ -87,10 +91,6 @@ public class Penumbra : IDalamudPlugin
PluginLog.Debug( "Triggered Redraw of {Player}.", p.Name );
ObjectReloader.RedrawObject( p, RedrawType.OnlyWithSettings );
};
Api = new PenumbraApi( this );
SubscribeItemLinks();
Ipc = new PenumbraIpc( pluginInterface, Api );
}
public bool Enable()