mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-13 18:34:54 -05:00
13 lines
303 B
JavaScript
13 lines
303 B
JavaScript
module.exports = {
|
|
name: 'refillcore',
|
|
alias: ['rc'],
|
|
description: 'Resets the bot\'s command core',
|
|
usage: '',
|
|
trusted: 0,
|
|
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
|
|
bot.core.fillCore()
|
|
},
|
|
discordExecute (bot) {
|
|
bot.core.fillCore()
|
|
}
|
|
}
|