From bf7100a6b8c4329f5a32be16395c773ceec48218 Mon Sep 17 00:00:00 2001 From: Eduardo Aznar Date: Tue, 19 Sep 2023 14:46:52 +0200 Subject: [PATCH] remove icon --- src/commands/settings.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/commands/settings.ts b/src/commands/settings.ts index 0cddd7822..cbf3dcd36 100644 --- a/src/commands/settings.ts +++ b/src/commands/settings.ts @@ -82,12 +82,11 @@ const seeSettings: Command = { for (const [counter, content] of counters) { const discordChannel = guild.channels.get(counter); - const { type, id } = discordChannel; - const icon = ["\\#️⃣", " ", "\\🔊", " ", "\\📚", "\\📢", " "]; + const { id } = discordChannel; countersSection += `${ botHasPermsToEdit(discordChannel) ? " " : " \\⚠️ " - }\\- ${icon[type]} <#${id}> \`${id}\`: \`\`\`${content}\`\`\`\n`; + }\\- <#${id}> \`${id}\`: \`\`\`${content}\`\`\`\n`; } }