From a24577af48ab2add86d257d8a799a0462bd88f2e Mon Sep 17 00:00:00 2001 From: samvaio Date: Sat, 3 Dec 2016 23:40:14 +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 a6f56c69..546d8c91 100644 --- a/src/NadekoBot/Modules/Help/Help.cs +++ b/src/NadekoBot/Modules/Help/Help.cs @@ -93,13 +93,13 @@ namespace NadekoBot.Modules.Help .WithAuthor(eau => eau.WithName("Help") .WithUrl("http://nadekobot.readthedocs.io/en/latest/Commands%20List/") .WithIconUrl(NadekoBot.Client.GetCurrentUser().AvatarUrl)) - .WithTitle("**Sorry!**") + .WithTitle("Sorry!") .WithDescription("I can't find that command. Please check the **command** and **command prefix** before trying again.") .WithColor(NadekoBot.ErrorColor); await channel.EmbedAsync(erro.Build()); return; } - var str = $"**Command:** `{com.Text}`"; + var str = $"Command: {com.Text}"; var alias = com.Aliases.Skip(1).FirstOrDefault(); if (alias != null) str += $" / `{alias}`";