Reverted back to a re-fork of discord.net

This commit is contained in:
Kwoth
2023-08-12 13:48:56 +00:00
parent f4b21a9445
commit 17ef3caefd
8 changed files with 18 additions and 8 deletions

View File

@@ -463,10 +463,11 @@ public partial class Utility : NadekoModule
tags = new[] { name };
await ctx.Guild.CreateStickerAsync(name,
string.IsNullOrWhiteSpace(description) ? "Missing description" : description,
tags,
stream,
$"{name}.{format}");
$"{name}.{format}",
tags,
description: string.IsNullOrWhiteSpace(description) ? "Missing description" : description
);
await ctx.OkAsync();
}