From 05ab5e7d03502ade2cb7440be48f67be353c4679 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 { } + } } }