mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
13 lines
260 B
JavaScript
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();
|
|
},
|
|
};
|