cleaned up anagram.js, combined module exports.

This commit is contained in:
2019-03-18 06:23:27 +11:00
parent 7d11f13e30
commit 467dc136ff
22 changed files with 513 additions and 496 deletions

View File

@@ -1,9 +1,11 @@
exports.name = "Change <@476369946386104330>'s Name"
exports.alias = ['botname']
exports.helptext = "Changes the bots name on the server"
exports.permissions = ["MANAGE_NICKNAMES"]
exports.args = ["new-name"]
exports.category = 'admin'
exports.command = (client, msg) => {
msg.guild.me.setNickname(msg.suffix);
module.exports = {
name = "Change <@476369946386104330>'s Name",
alias =['botname'],
helptext = "Changes the bots name on the server",
permissions =["MANAGE_NICKNAMES"],
args =["new-name"],
category = 'admin',
command = (client, msg) => {
msg.guild.me.setNickname(msg.suffix);
}
}