FridayNightFunkinBoyfriendBot/commands/rc.js

12 lines
No EOL
278 B
JavaScript

module.exports = {
name: 'rc',
description:['refill the bots core'],
trustLevel: 0,
aliases:['refillcore'],
execute (context) {
const bot = context.bot
bot.core.refill()
context.source.sendFeedback('Successfully Refilled Core!')
}
}