mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-08 22:23:03 -04:00
user command support
This commit is contained in:
parent
af5a7f4252
commit
86936dc100
14 changed files with 710 additions and 11 deletions
|
@ -164,7 +164,10 @@ module.exports.formatPaginationEmbeds = function(embeds){
|
|||
formatted.push(ne)
|
||||
} else if (e.embeds){
|
||||
ne.embeds = e.embeds.map((se)=>{
|
||||
se.footer.text = se.footer.text + ` • Page ${i}/${l}`
|
||||
if(se.footer) se.footer.text = se.footer.text + ` • Page ${i}/${l}`
|
||||
else se.footer = {
|
||||
text: `Page ${i}/${l}`
|
||||
}
|
||||
return se;
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue