From e1256dd3268e33925c480e39d157054b3eab0169 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Fri, 1 Feb 2019 16:59:24 -0600 Subject: [PATCH] Added error message to AddInFeature --- IPA.Loader/Loader/Features/AddInFeature.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/IPA.Loader/Loader/Features/AddInFeature.cs b/IPA.Loader/Loader/Features/AddInFeature.cs index 47cc9294..08da7fdc 100644 --- a/IPA.Loader/Loader/Features/AddInFeature.cs +++ b/IPA.Loader/Loader/Features/AddInFeature.cs @@ -17,5 +17,11 @@ { return plugin != selfMeta; } + + public override string InvalidMessage + { + get => "Plugin is an add-in for some other mod, therefore should not be loaded."; + protected set { } + } } }