From a4b009a26f695a1b792f5b9a99797c470d2a2902 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Mon, 30 Oct 2023 09:37:16 +0500 Subject: [PATCH] Disable text commands (#175) This PR disables text commands as their presence was not intentional. --- src/Octobot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Octobot.cs b/src/Octobot.cs index 234f3a8..07bc058 100644 --- a/src/Octobot.cs +++ b/src/Octobot.cs @@ -78,7 +78,7 @@ public sealed class Octobot services.AddTransient() // Init .AddDiscordCaching() - .AddDiscordCommands(true) + .AddDiscordCommands(true, false) // Slash command event handlers .AddPreparationErrorEvent() .AddPostExecutionEvent()