diff options
author | Rory& <root@rory.gay> | 2024-09-17 04:35:29 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-09-17 04:35:29 +0200 |
commit | 9efb2efc582e3d57154f40f519762a07b9d00501 (patch) | |
tree | f15e4296353c76c0bcb9481cc2da7a7b4e695c2d /Utilities/LibMatrix.Utilities.Bot/BotCommandInstaller.cs | |
parent | Merge remote-tracking branch 'origin/dev/e2ee{canonical-json}' (diff) | |
download | LibMatrix-9efb2efc582e3d57154f40f519762a07b9d00501.tar.xz |
Arcanelibs changes
Diffstat (limited to '')
-rw-r--r-- | Utilities/LibMatrix.Utilities.Bot/BotCommandInstaller.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/LibMatrix.Utilities.Bot/BotCommandInstaller.cs b/Utilities/LibMatrix.Utilities.Bot/BotCommandInstaller.cs index 215f28a..621c1ee 100644 --- a/Utilities/LibMatrix.Utilities.Bot/BotCommandInstaller.cs +++ b/Utilities/LibMatrix.Utilities.Bot/BotCommandInstaller.cs @@ -37,7 +37,7 @@ public class BotInstaller(IServiceCollection services) { } public BotInstaller DiscoverAllCommands() { - foreach (var commandClass in new ClassCollector<ICommand>().ResolveFromAllAccessibleAssemblies()) { + foreach (var commandClass in ClassCollector<ICommand>.ResolveFromAllAccessibleAssemblies()) { Console.WriteLine($"Adding command {commandClass.Name}"); services.AddScoped(typeof(ICommand), commandClass); } |