14 lines
348 B
JavaScript
14 lines
348 B
JavaScript
|
module.exports = {
|
||
|
name: 'end',
|
||
|
alias: [],
|
||
|
description: 'Ends the bot\'s client',
|
||
|
usage: '<hash>',
|
||
|
trusted: 1,
|
||
|
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
|
||
|
bot.end('end command')
|
||
|
},
|
||
|
discordExecute (bot, username, sender, prefix, args, channeldc, message) {
|
||
|
bot.end('end command')
|
||
|
}
|
||
|
}
|