mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
13 lines
348 B
JavaScript
13 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')
|
|
}
|
|
}
|