mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
fix issue with plugin registration
This commit is contained in:
@ -311,7 +311,10 @@ namespace IW4MAdmin.Application
|
||||
}
|
||||
|
||||
// register any script plugins
|
||||
serviceCollection.AddSingleton(sp => pluginImporter.DiscoverScriptPlugins(sp));
|
||||
foreach (var func in pluginImporter.DiscoverScriptPlugins())
|
||||
{
|
||||
serviceCollection.AddSingleton(sp => func(sp));
|
||||
}
|
||||
|
||||
// register any eventable types
|
||||
foreach (var assemblyType in typeof(Program).Assembly.GetTypes()
|
||||
|
Reference in New Issue
Block a user