FridayNightFunkinBoyfriendBot/commands/rc.js

12 lines
275 B
JavaScript
Raw Normal View History

2024-02-13 12:11:00 -05:00
module.exports = {
name: 'rc',
description:['refill the bots core'],
hashOnly:false,
consoleOnly:false,
execute (context) {
const bot = context.bot
bot.core.refill()
context.source.sendFeedback('Successfully Refilled Core!')
}
}