1
Fork 0
mirror of https://gitlab.com/Kwoth/nadekobot.git synced 2024-10-03 04:23:13 +00:00

Fixed an extra whitespace in usage part of command help if the command has no arguments

This commit is contained in:
Kwoth 2022-01-02 17:00:33 +01:00
parent ca9fa1b0ac
commit 4e60ea4241

View file

@ -126,11 +126,11 @@ public static class Extensions
IBotStrings strings,
ulong? guildId,
string prefix)
=> Array.ConvertAll(strings.GetCommandStrings(cmd.Remarks, guildId).Args,
=> Array.ConvertAll(strings.GetCommandStrings(cmd.Summary, guildId).Args,
arg => GetFullUsage(cmd.Name, arg, prefix));
private static string GetFullUsage(string commandName, string args, string prefix)
=> $"{prefix}{commandName} {string.Format(args, prefix)}";
=> $"{prefix}{commandName} {string.Format(args, prefix)}".TrimEnd();
public static IEmbedBuilder AddPaginatedFooter(this IEmbedBuilder embed, int curPage, int? lastPage)
{