show guild avatars

This commit is contained in:
derpystuff 2023-01-13 16:12:19 +01:00
parent c3e8edcd37
commit 028999eef1
2 changed files with 46 additions and 10 deletions

View file

@ -129,4 +129,11 @@ module.exports.formatPaginationEmbeds = function(embeds){
}
}
return formatted;
}
// Creates a page for our paginator. simple helper so we dont have to do {embeds:[]} every time
module.exports.page = function(embed){
return {
embeds: [embed]
}
}