diff --git a/src/NadekoBot/Modules/Help/Help.cs b/src/NadekoBot/Modules/Help/Help.cs index 20fbaee0..aab284d0 100644 --- a/src/NadekoBot/Modules/Help/Help.cs +++ b/src/NadekoBot/Modules/Help/Help.cs @@ -91,7 +91,7 @@ namespace NadekoBot.Modules.Help //await channel.SendMessageAsync("🔍 **I can't find that command.**"); var erro = new EmbedBuilder() .WithAuthor(eau => eau.WithName("Help") - .WithAuthor(eau => eau.WithUrl("http://nadekobot.readthedocs.io/en/latest/Commands%20List/")) + .WithUrl("http://nadekobot.readthedocs.io/en/latest/Commands%20List/") .WithIconUrl(NadekoBot.Client.GetCurrentUser().AvatarUrl)) .WithTitle("🔎 **Error**") .WithDescription("I can't find that command.") @@ -105,7 +105,7 @@ namespace NadekoBot.Modules.Help str += $" / `{alias}`"; var embed = new EmbedBuilder() .WithAuthor(eau => eau.WithName("Help") - .WithAuthor(eau => eau.WithUrl("http://nadekobot.readthedocs.io/en/latest/Commands%20List/")) + .WithUrl("http://nadekobot.readthedocs.io/en/latest/Commands%20List/") .WithIconUrl(NadekoBot.Client.GetCurrentUser().AvatarUrl)) .WithTitle(str) .WithDescription($"{ string.Format(com.Summary, com.Module.Prefix)}{ GetCommandRequirements(com)}")