chomens-bot-js/commands/refillcore.js

14 lines
303 B
JavaScript
Raw Normal View History

2022-08-14 05:51:45 -04:00
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) {
2022-11-30 06:01:46 -05:00
bot.core.fillCore()
2022-08-14 05:51:45 -04:00
},
discordExecute (bot) {
2022-11-30 06:01:46 -05:00
bot.core.fillCore()
2022-11-27 02:35:28 -05:00
}
}