Return sticker url with size 1024

This commit is contained in:
2024-11-26 11:58:38 +00:00
committed by GitHub
parent f55bd3d98a
commit f29abd9df4

View File

@@ -63,7 +63,7 @@ module.exports = {
collector.on('collect', m => {
m.stickers.forEach(sticker => {
stickers.push(`https://media.discordapp.net/stickers/${sticker.id}.png`);
stickers.push(`https://media.discordapp.net/stickers/${sticker.id}.png?size=1024`);
collector.stop();
});
});