make aliases small pills

This commit is contained in:
derpystuff 2023-06-30 23:00:37 +02:00
parent 0514ebcdcf
commit 39e255973e

View file

@ -43,7 +43,7 @@ function renderCommandList(commands, descriptions, limit){
function createCommandPage(context, prefix, command){ function createCommandPage(context, prefix, command){
alias = ' ' alias = ' '
if(command.aliases.length >= 1){ if(command.aliases.length >= 1){
for(const al of command.aliases) alias += pill(al) for(const al of command.aliases) alias += smallPill(al)
alias += "\n" alias += "\n"
} }