From 02b1210e5b3772a6e8922ca9ba7c8e653fb76f56 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) {