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.
2021-02-28 00:39:52 -06:00
|
|
|
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")
|
|
|
|
}}}
|