Update Help.cs

This commit is contained in:
samvaio 2016-12-04 21:40:41 +05:30 committed by GitHub
parent 4b15d813e1
commit 5b8285d21b

View File

@ -99,10 +99,10 @@ namespace NadekoBot.Modules.Help
await channel.EmbedAsync(erro.Build()); await channel.EmbedAsync(erro.Build());
return; return;
} }
var str = $"{com.Text}"; var str = $"**{com.Text}**";
var alias = com.Aliases.Skip(1).FirstOrDefault(); var alias = com.Aliases.Skip(1).FirstOrDefault();
if (alias != null) if (alias != null)
str += $" / `{alias}`"; str += $" / **`{alias}`**";
var embed = new EmbedBuilder() var embed = new EmbedBuilder()
.WithAuthor(eau => eau.WithName("Command") .WithAuthor(eau => eau.WithName("Command")
.WithUrl("http://nadekobot.readthedocs.io/en/latest/Commands%20List/") .WithUrl("http://nadekobot.readthedocs.io/en/latest/Commands%20List/")