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
|
|
|
module.exports = {
|
2021-03-04 22:33:44 -06:00
|
|
|
name: 'setnick',
|
2021-03-12 10:57:13 -06:00
|
|
|
description: 'i genuinely fucking dont know. :SylvPain:',
|
|
|
|
execute(client, message, args, Discord) {
|
|
|
|
if (message.channel.permissionsFor(message.author).has("CHANGE_NICKNAME")) {
|
|
|
|
message.channel.send("meow")
|
|
|
|
} else {
|
|
|
|
message.channel.send("no permission")
|
|
|
|
};
|
2021-03-04 22:33:44 -06:00
|
|
|
}}
|