Some small fixes.

This commit is contained in:
Ottermandias 2022-11-04 17:09:01 +01:00
parent 68a725d51d
commit cbdac759b3
4 changed files with 5 additions and 4 deletions

View file

@ -60,6 +60,7 @@ public class Penumbra : IDalamudPlugin
public static FrameworkManager Framework { get; private set; } = null!;
public static ActorManager Actors { get; private set; } = null!;
public static IObjectIdentifier Identifier { get; private set; } = null!;
public static IGamePathParser GamePathParser { get; private set; } = null!;
public static readonly List< Exception > ImcExceptions = new();
@ -83,6 +84,7 @@ public class Penumbra : IDalamudPlugin
Dalamud.Initialize( pluginInterface );
Log = new Logger();
Identifier = GameData.GameData.GetIdentifier( Dalamud.PluginInterface, Dalamud.GameData );
GamePathParser = GameData.GameData.GetGamePathParser();
DevPenumbraExists = CheckDevPluginPenumbra();
IsNotInstalledPenumbra = CheckIsNotInstalled();