diff --git a/src/structure/components/commands/moderation/Note.js b/src/structure/components/commands/moderation/Note.js index da1856f..60d434a 100644 --- a/src/structure/components/commands/moderation/Note.js +++ b/src/structure/components/commands/moderation/Note.js @@ -19,16 +19,13 @@ class NoteCommand extends ModerationCommand { }); } - async execute(interaction, { users, silent, ...args }) { + async execute(interaction, { users, ...args }) { if (!users) throw new CommandError(interaction, { index: 'MODERATION_MISSING_USERS' }); return this.client.moderationManager.handleInfraction(Note, interaction, { targets: users.value, - args: { - silent, - ...args - } + args }); }