diff --git a/src/commands/roles/verification/plus.ts b/src/commands/roles/verification/plus.ts index b4e058a..31378df 100644 --- a/src/commands/roles/verification/plus.ts +++ b/src/commands/roles/verification/plus.ts @@ -29,7 +29,7 @@ export class PlusCommand extends Command { name: 'plus', aliases: ['+'], description: 'Give/remove the plus role', - preconditions: ['CoordinatorOnly'], + preconditions: [['CoordinatorOnly', 'ModOnly']], }); } @@ -60,12 +60,11 @@ export class PlusCommand extends Command { await interaction.reply({ content: 'Error fetching guild!', ephemeral: true, - fetchReply: true, }); return; } - await interaction.deferReply({ ephemeral: true }); + await interaction.deferReply(); const info = await this.managePlus(user, mod, guild);