From 27bf9edb4a4bd3d5d107d16d2db2c58d164fe443 Mon Sep 17 00:00:00 2001 From: samvaio Date: Sat, 3 Dec 2016 21:02:47 +0530 Subject: [PATCH] Update Help.cs --- src/NadekoBot/Modules/Help/Help.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NadekoBot/Modules/Help/Help.cs b/src/NadekoBot/Modules/Help/Help.cs index 335e51ac..55ed751c 100644 --- a/src/NadekoBot/Modules/Help/Help.cs +++ b/src/NadekoBot/Modules/Help/Help.cs @@ -95,7 +95,7 @@ namespace NadekoBot.Modules.Help .WithIconUrl(NadekoBot.Client.GetCurrentUser().AvatarUrl)) .WithTitle("🔎 **Error**") .WithDescription("I can't find that command.") - .WithColor(NadekoBot.ErrorColor) + .WithColor(NadekoBot.ErrorColor); await channel.EmbedAsync(erro.Build()); return; } @@ -110,7 +110,7 @@ namespace NadekoBot.Modules.Help .WithTitle(str) .WithDescription($"{ string.Format(com.Summary, com.Module.Prefix)}{ GetCommandRequirements(com)}") .AddField(fb => fb.WithIndex(1).WithName("**Usage:**").WithValue($"{string.Format(com.Remarks, com.Module.Prefix)}").WithIsInline(false)) - .WithColor(NadekoBot.OkColor) + .WithColor(NadekoBot.OkColor); if (com != null) await channel.EmbedAsync(embed.Build()).ConfigureAwait(false); //await channel.SendMessageAsync(str + $@"{Environment.NewLine}**Desc:** {string.Format(com.Summary, com.Module.Prefix)} {GetCommandRequirements(com)}