From c8c885e573acd8e50115b9c36e71ab5cd4d76215 Mon Sep 17 00:00:00 2001 From: 13xforever Date: Wed, 7 Aug 2019 22:02:36 +0500 Subject: [PATCH] forgot to limit it to spam channel --- CompatBot/Commands/Syscall.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CompatBot/Commands/Syscall.cs b/CompatBot/Commands/Syscall.cs index f386eece..e375e347 100644 --- a/CompatBot/Commands/Syscall.cs +++ b/CompatBot/Commands/Syscall.cs @@ -3,6 +3,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using CompatApiClient.Utils; +using CompatBot.Commands.Attributes; using CompatBot.Database; using CompatBot.EventHandlers; using CompatBot.Utils; @@ -14,7 +15,7 @@ namespace CompatBot.Commands { internal sealed class Syscall: BaseCommandModuleCustom { - [Command("syscall"), Aliases("cell")] + [Command("syscall"), Aliases("cell"), LimitedToSpamChannel] [Description("Provides information about syscalls used by games")] public async Task Search(CommandContext ctx,[RemainingText, Description("Product ID, module, or function name. **Case sensitive**")] string search) {