chomens-bot-js/commands/refillcore.js
2022-11-16 18:09:37 +07:00

13 lines
330 B
JavaScript

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