Plugins Console CommandSolved

Hello

I was wondering what internal code is ran when typing "plugins" in the rust console.
Im making a plugin that can check if any plugins that a server is using are having compilation errors but the default code I got right now will only display the active plugins. whilst the "oxide.plugins" console command also displays the compilation error plugins at the end.

 List<string> PluginList = new List<string>();
            foreach (var plugin in plugins.GetAll())
            {
                PluginList.Add(plugin.Name);
            }​

Kind regards
Daan
Locked automatically