From c47ee005589daef0ae219673b83523e1ca915c6e Mon Sep 17 00:00:00 2001 From: Taken Date: Fri, 16 Feb 2024 12:41:04 +0100 Subject: [PATCH] Updated default perms Signed-off-by: Taken --- src/commands/anime.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/commands/anime.ts b/src/commands/anime.ts index 795e700..ac4db09 100644 --- a/src/commands/anime.ts +++ b/src/commands/anime.ts @@ -1,4 +1,4 @@ -import { PermissionFlagsBits, SlashCommandBuilder } from "discord.js" +import { SlashCommandBuilder } from "discord.js" import { Command } from "interfaces" import search from "./anime/search" import { devMessage, embedColor } from "config/options" @@ -24,7 +24,6 @@ export = { .setRequired(true) ) ) - .setDefaultMemberPermissions(PermissionFlagsBits.Administrator) .setDMPermission(false), async execute(interaction) { @@ -46,4 +45,4 @@ export = { }] }) } -} as Command \ No newline at end of file +} as Command