Updated dev deploy and unban command

This commit is contained in:
2023-11-30 15:58:04 +01:00
parent c135c46101
commit 44d24024d8
2 changed files with 23 additions and 8 deletions

View File

@@ -5,7 +5,6 @@ module.exports = {
name: "unban",
description: "Unban a user from the server",
type: "slash",
dev: true,
data: new SlashCommandBuilder()
.setName("unban")
@@ -22,7 +21,9 @@ module.exports = {
.setName("reason")
.setDescription("The reason for unbanning the user")
.setRequired(false)
),
)
.setDefaultMemberPermissions(PermissionFlagsBits.BanMembers)
.setDMPermission(false),
/** @param { import("discord.js").ChatInputCommandInteraction } interaction */