From ad3cd193255fe37dcb65a1d526475699575a236f Mon Sep 17 00:00:00 2001 From: samvaio Date: Sun, 4 Dec 2016 00:39:41 +0530 Subject: [PATCH] Update Help.cs --- src/NadekoBot/Modules/Help/Help.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/NadekoBot/Modules/Help/Help.cs b/src/NadekoBot/Modules/Help/Help.cs index 62247117..79dc9ec8 100644 --- a/src/NadekoBot/Modules/Help/Help.cs +++ b/src/NadekoBot/Modules/Help/Help.cs @@ -110,10 +110,8 @@ namespace NadekoBot.Modules.Help //.WithTitle(str) .AddField(fb => fb.WithIndex(1).WithName("**Command**").WithValue(str).WithIsInline(true)) .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)) - //.WithName("**TEST1**").WithValue($"Testing1").WithIsInline(true) - //.WithName("**TEST2**").WithValue($"Testing2").WithIsInline(true) - //.WithName("**TEST3**").WithValue($"Testing3").WithIsInline(true)) .WithColor(NadekoBot.OkColor); if (com != null) await channel.EmbedAsync(embed.Build()).ConfigureAwait(false);