Add slash command builder to lock
parent
ffe862dada
commit
1895916d61
|
@ -1,20 +1,26 @@
|
||||||
const { Discord, Client, Message, MessageEmbed, Permissions } = require('discord.js');
|
const { Client, CommandInteraction, Permissions } = require("discord.js");
|
||||||
|
const { SlashCommandBuilder } = require('@discordjs/builders');
|
||||||
|
const { PermissionFlagsBits } = require('discord-api-types/v10');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: 'lock',
|
...new SlashCommandBuilder()
|
||||||
aliases: [''],
|
.setName('lock')
|
||||||
/**
|
.setDescription('Lock a channel')
|
||||||
* @param {Client} client
|
.setDefaultMemberPermissions(PermissionFlagsBits.KickMembers | PermissionFlagsBits.BanMembers),
|
||||||
* @param {Message} message
|
|
||||||
* @param {String[]} args
|
/**
|
||||||
|
*
|
||||||
|
* @param {Client} client
|
||||||
|
* @param {CommandInteraction} interaction
|
||||||
|
* @param {String[]} args
|
||||||
*/
|
*/
|
||||||
run: async(client, message, args) => {
|
|
||||||
|
run: async (client, interaction, args) => {
|
||||||
|
|
||||||
const permission = message.member.permissions.has(Permissions.FLAGS.MANAGE_CHANNELS)
|
const permission = interaction.member.permissions.has(Permissions.FLAGS.MANAGE_CHANNELS)
|
||||||
if (!permission)return message.reply({ contents: "You don't have permission to use this command" });
|
if (!permission)return interaction.reply({ contents: "You don't have permission to use this command", ephemeral: true });
|
||||||
|
interaction.channel.permissionOverwrites.edit(interaction.guild.roles.everyone.id, {SEND_MESSAGES: false});
|
||||||
message.channel.permissionOverwrites.edit(message.guild.roles.everyone.id, {SEND_MESSAGES: false});
|
interaction.reply("Channel has been locked.")
|
||||||
|
|
||||||
message.channel.send("Channel has been locked.")
|
},
|
||||||
}
|
};
|
||||||
}
|
|
|
@ -6,7 +6,7 @@ client.on("interactionCreate", async (interaction) => {
|
||||||
if (interaction.isCommand()) {
|
if (interaction.isCommand()) {
|
||||||
const cmd = client.slashCommands.get(interaction.commandName);
|
const cmd = client.slashCommands.get(interaction.commandName);
|
||||||
if (!cmd)
|
if (!cmd)
|
||||||
return interaction.reply({ content: "An error has occured " });
|
return interaction.reply({ content: "An error has occurred" });
|
||||||
|
|
||||||
const args = [];
|
const args = [];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue