diff --git a/Dalamud/Plugin/DalamudPluginInterface.cs b/Dalamud/Plugin/DalamudPluginInterface.cs index fb1741f87..8eaf1a74c 100644 --- a/Dalamud/Plugin/DalamudPluginInterface.cs +++ b/Dalamud/Plugin/DalamudPluginInterface.cs @@ -48,7 +48,6 @@ namespace Dalamud.Plugin this.pluginName = pluginName; this.AssemblyLocation = assemblyLocation; - this.AssemblyDirectory = new DirectoryInfo(assemblyLocation.DirectoryName!); this.configs = Service.Get().PluginConfigs; this.Reason = reason; this.IsDev = isDev; @@ -121,11 +120,6 @@ namespace Dalamud.Plugin /// public FileInfo AssemblyLocation { get; } - /// - /// Gets the directory your plugin assembly and bundled files are stored in. - /// - public DirectoryInfo AssemblyDirectory { get; } - /// /// Gets the directory your plugin configurations are stored in. ///