Updated default perms

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2024-02-16 12:41:04 +01:00
parent 0e2caea0ae
commit c47ee00558

View File

@@ -1,4 +1,4 @@
import { PermissionFlagsBits, SlashCommandBuilder } from "discord.js" import { SlashCommandBuilder } from "discord.js"
import { Command } from "interfaces" import { Command } from "interfaces"
import search from "./anime/search" import search from "./anime/search"
import { devMessage, embedColor } from "config/options" import { devMessage, embedColor } from "config/options"
@@ -24,7 +24,6 @@ export = {
.setRequired(true) .setRequired(true)
) )
) )
.setDefaultMemberPermissions(PermissionFlagsBits.Administrator)
.setDMPermission(false), .setDMPermission(false),
async execute(interaction) { async execute(interaction) {
@@ -46,4 +45,4 @@ export = {
}] }]
}) })
} }
} as Command } as Command