From ec68a536167c5db8fc4f1d32ddebc441ef1e91e5 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Wed, 22 May 2019 18:41:08 -0500 Subject: [PATCH] New AfterInit is now actually called --- IPA.Loader/Loader/PluginLoader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPA.Loader/Loader/PluginLoader.cs b/IPA.Loader/Loader/PluginLoader.cs index a3376567..3a94c4e5 100644 --- a/IPA.Loader/Loader/PluginLoader.cs +++ b/IPA.Loader/Loader/PluginLoader.cs @@ -614,7 +614,7 @@ namespace IPA.Loader foreach (var feature in meta.Features) try { - feature.AfterInit(info); + feature.AfterInit(info, info.Plugin); } catch (Exception e) {