Skip to content

Commit

Permalink
remove debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeAspy committed Jul 7, 2023
1 parent c57de2d commit 758f298
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
8 changes: 0 additions & 8 deletions src/commands/manage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,6 @@ export const buttons = [
execute: async (interaction: ButtonInteraction) => {
if (interaction.inCachedGuild()) {
if (interaction.member.roles.cache.has(settings.VerifierRole)) {
await interaction.reply({
content: '`verify.accept`',
ephemeral: true,
});
const newEmbed = EmbedBuilder.from(
interaction.message.embeds.at(0)!,
)
Expand Down Expand Up @@ -246,10 +242,6 @@ export const buttons = [
interaction.member.roles.cache.has(settings.VerifierRole) ||
originalPrompter == interaction.user
) {
await interaction.reply({
content: '`verify.deny`',
ephemeral: true,
});
const newEmbed = EmbedBuilder.from(
interaction.message.embeds.at(0)!,
)
Expand Down
1 change: 0 additions & 1 deletion src/handler/button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export function handleButton(
client: Client,
commands: Map<string, Command>, // TYPE THIS
): void {
console.log(interaction.customId);
for (const command of commands) {
const buttons = command[1]?.buttons;
if (!buttons) continue;
Expand Down

0 comments on commit 758f298

Please sign in to comment.