From ee00f2847f8d60b790076e23b6d73668431e3738 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Mon, 30 Oct 2023 09:32:18 +0500 Subject: [PATCH] fix: disable text commands --- 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()