mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
14 lines
327 B
JavaScript
14 lines
327 B
JavaScript
module.exports = {
|
|
name: 'end',
|
|
alias: [],
|
|
description: 'Ends the bot\'s client',
|
|
usage: '<hash>',
|
|
trusted: 1,
|
|
execute: function(bot, username, usernameraw, sender, prefix, args) {
|
|
if (args[0]===bot.hash) {
|
|
bot.emit('end', 'end command');
|
|
} else {
|
|
throw new Error('Invalid hash');
|
|
}
|
|
},
|
|
};
|