From d7b1486615a2addb6c9a00484102b7cfc3105aca Mon Sep 17 00:00:00 2001 From: Noikoio Date: Sun, 4 Mar 2018 17:59:35 -0800 Subject: [PATCH] Added comment for consistency --- Module/ModTools/Commands/Say.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Module/ModTools/Commands/Say.cs b/Module/ModTools/Commands/Say.cs index baf2424..ff6b3c3 100644 --- a/Module/ModTools/Commands/Say.cs +++ b/Module/ModTools/Commands/Say.cs @@ -8,10 +8,10 @@ namespace Noikoio.RegexBot.Module.ModTools.Commands { class Say : CommandBase { - public Say(ModTools l, string label, JObject conf) : base(l, label, conf) { } - + // No configuration at the moment. // TODO: Whitelist/blacklist - to limit which channels it can "say" into - + public Say(ModTools l, string label, JObject conf) : base(l, label, conf) { } + public override async Task Invoke(SocketGuild g, SocketMessage msg) { string[] line = msg.Content.Split(new char[] { ' ' }, 3, StringSplitOptions.RemoveEmptyEntries);