From 75cbcfff76adc01655edb8225c8259c760b6ec4d Mon Sep 17 00:00:00 2001 From: runebaas Date: Fri, 2 Mar 2018 23:35:14 +0100 Subject: [PATCH] Add a check to help --- Geekbot.net/Commands/Help.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Geekbot.net/Commands/Help.cs b/Geekbot.net/Commands/Help.cs index aa2cc57..83374a8 100644 --- a/Geekbot.net/Commands/Help.cs +++ b/Geekbot.net/Commands/Help.cs @@ -1,6 +1,7 @@ using System; using System.Text; using System.Threading.Tasks; +using Discord; using Discord.Commands; using Geekbot.net.Lib; @@ -28,6 +29,7 @@ namespace Geekbot.net.Commands sb.AppendLine("https://geekbot.pizzaandcoffee.rocks/commands"); var dm = await Context.User.GetOrCreateDMChannelAsync(); await dm.SendMessageAsync(sb.ToString()); + Context.Message.AddReactionAsync(new Emoji("✅")); } catch (Exception e) {