adjust pill display in guild command

This commit is contained in:
bignutty 2024-08-28 20:59:53 +02:00
parent 3f87af0428
commit 5a650bbb3c

View file

@ -47,7 +47,7 @@ module.exports = {
let pillDisplay = ""
for (let i = 0; i < pills.length; i++) {
const element = pills[i];
pillDisplay += element;
pillDisplay += element + " ";
if(!((i+1)%2)) pillDisplay += "\n"
}