Skip to content

Commit

Permalink
remove icon
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardozgz committed Sep 19, 2023
1 parent cf5d717 commit bf7100a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/commands/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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`;
}
}

Expand Down

0 comments on commit bf7100a

Please sign in to comment.