From 395b27f138e070a9f9ad2d83ab563ea2e8c3a53e Mon Sep 17 00:00:00 2001 From: samvaio Date: Sat, 3 Dec 2016 23:24:56 +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 a6306da1..a6f56c69 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}`";