chomens-bot-js/commands/refillcore.js

14 lines
330 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,
2022-11-16 06:09:37 -05:00
execute: function(bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash) {
2022-10-17 21:40:46 -04:00
bot.core.loopPlace();
2022-08-14 05:51:45 -04:00
},
2022-10-22 08:14:27 -04:00
discordExecute: function(bot) {
bot.core.loopPlace();
},
2022-08-14 05:51:45 -04:00
};