This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
anitrox/commands/setnick.js

14 lines
461 B
JavaScript

const { DiscordAPIError } = require("discord.js")
module.exports = {
name: "setnick",
description: "Set yours or another users nickname.",
execute(client, message, args) {
const guild = guild.fetch
const member = guild.member(message.author)
if (guild.member.hasPermission('CHANGE_NICKNAME')) {
message.channel.send("yes")
} else {
message.channel.send("no")
}}}