chomens-bot-js/commands/refillcore.js
2022-11-30 18:01:46 +07:00

13 lines
316 B
JavaScript

module.exports = {
name: 'refillcore',
alias: ['rc'],
description: 'Resets the bot\'s command core',
usage: '',
trusted: 0,
execute (bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) {
bot.core.fillCore()
},
discordExecute (bot) {
bot.core.fillCore()
}
}