FridayNightFunkinBoyfriendBot/commands/rc.js

14 lines
332 B
JavaScript
Raw Normal View History

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