Update Help.cs

This commit is contained in:
samvaio 2016-12-04 00:39:41 +05:30 committed by GitHub
parent 64169ab8f3
commit ad3cd19325

View File

@ -110,10 +110,8 @@ namespace NadekoBot.Modules.Help
//.WithTitle(str) //.WithTitle(str)
.AddField(fb => fb.WithIndex(1).WithName("**Command**").WithValue(str).WithIsInline(true)) .AddField(fb => fb.WithIndex(1).WithName("**Command**").WithValue(str).WithIsInline(true))
.WithDescription($"{ string.Format(com.Summary, com.Module.Prefix)}{ GetCommandRequirements(com)}") .WithDescription($"{ string.Format(com.Summary, com.Module.Prefix)}{ GetCommandRequirements(com)}")
.AddField(fb => fb.WithIndex(2).WithName("TEST").WithValue($"TESTING1").WithIsInline(false))
.AddField(fb => fb.WithIndex(3).WithName("**Usage**").WithValue($"{string.Format(com.Remarks, com.Module.Prefix)}").WithIsInline(false)) .AddField(fb => fb.WithIndex(3).WithName("**Usage**").WithValue($"{string.Format(com.Remarks, com.Module.Prefix)}").WithIsInline(false))
//.WithName("**TEST1**").WithValue($"Testing1").WithIsInline(true)
//.WithName("**TEST2**").WithValue($"Testing2").WithIsInline(true)
//.WithName("**TEST3**").WithValue($"Testing3").WithIsInline(true))
.WithColor(NadekoBot.OkColor); .WithColor(NadekoBot.OkColor);
if (com != null) if (com != null)
await channel.EmbedAsync(embed.Build()).ConfigureAwait(false); await channel.EmbedAsync(embed.Build()).ConfigureAwait(false);