FridayNightFunkinBoyfriendBot/commands/rc.js

12 lines
278 B
JavaScript
Raw Normal View History

2023-12-17 14:55:27 -05:00
module.exports = {
name: 'rc',
description:['refill the bots core'],
2023-12-20 11:54:03 -05:00
trustLevel: 0,
2023-12-17 14:55:27 -05:00
aliases:['refillcore'],
execute (context) {
const bot = context.bot
bot.core.refill()
context.source.sendFeedback('Successfully Refilled Core!')
}
}