From 39e255973e91fa75686f3f333b193cd4b647a673 Mon Sep 17 00:00:00 2001 From: derpystuff <3515180-derpystuff@users.noreply.gitlab.com> Date: Fri, 30 Jun 2023 23:00:37 +0200 Subject: [PATCH] make aliases small pills --- commands/message/core/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/message/core/help.js b/commands/message/core/help.js index 10dced2..20e78e2 100644 --- a/commands/message/core/help.js +++ b/commands/message/core/help.js @@ -43,7 +43,7 @@ function renderCommandList(commands, descriptions, limit){ function createCommandPage(context, prefix, command){ alias = ' ​ ' 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" }