about summary refs log tree commit diff
path: root/Utilities/LibMatrix.Utilities.Bot/BotCommandInstaller.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-09-17 04:35:29 +0200
committerRory& <root@rory.gay>2024-09-17 04:35:29 +0200
commit9efb2efc582e3d57154f40f519762a07b9d00501 (patch)
treef15e4296353c76c0bcb9481cc2da7a7b4e695c2d /Utilities/LibMatrix.Utilities.Bot/BotCommandInstaller.cs
parentMerge remote-tracking branch 'origin/dev/e2ee{canonical-json}' (diff)
downloadLibMatrix-9efb2efc582e3d57154f40f519762a07b9d00501.tar.xz
Arcanelibs changes
Diffstat (limited to '')
-rw-r--r--Utilities/LibMatrix.Utilities.Bot/BotCommandInstaller.cs2
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);
         }