diff --git a/IPA.Loader/Loader/PluginManager.cs b/IPA.Loader/Loader/PluginManager.cs index 29eac51f..5f891ce3 100644 --- a/IPA.Loader/Loader/PluginManager.cs +++ b/IPA.Loader/Loader/PluginManager.cs @@ -35,7 +35,7 @@ namespace IPA.Loader internal static IEnumerable BSMetas => _bsPlugins; /// - /// Gets info about the plugin with the specified name. + /// Gets info about the enabled plugin with the specified name. /// /// the name of the plugin to get (must be an exact match) /// the plugin metadata for the requested plugin or if it doesn't exist or is disabled @@ -43,7 +43,7 @@ namespace IPA.Loader => BSMetas.Select(p => p.Metadata).FirstOrDefault(p => p.Name == name); /// - /// Gets info about the plugin with the specified ID. + /// Gets info about the enabled plugin with the specified ID. /// /// the ID name of the plugin to get (must be an exact match) /// the plugin metadata for the requested plugin or if it doesn't exist or is disabled