chomens-bot-js/commands/refillcore.js
2022-10-22 19:14:27 +07:00

13 lines
260 B
JavaScript

module.exports = {
name: 'refillcore',
alias: ['rc'],
description: 'Resets the bot\'s command core',
usage: '',
trusted: 0,
execute: function(bot) {
bot.core.loopPlace();
},
discordExecute: function(bot) {
bot.core.loopPlace();
},
};