Remove AssemblyLocation from PluginInterface ctor

Hooks work better.
This commit is contained in:
Raymond 2021-08-09 11:06:18 -04:00
parent 64bc2ddee4
commit ff5502baa8
4 changed files with 5 additions and 12 deletions

View file

@ -272,7 +272,7 @@ namespace Dalamud.Plugin.Internal
this.Manifest.Save(this.manifestFile);
}
this.DalamudInterface = new DalamudPluginInterface(this.dalamud, this.pluginAssembly.GetName().Name, this.DllFile.FullName, reason);
this.DalamudInterface = new DalamudPluginInterface(this.dalamud, this.pluginAssembly.GetName().Name, reason);
if (this.IsDev)
{