FridayNightFunkinBoyfriendBot/commands/echo.js

15 lines
259 B
JavaScript
Raw Permalink Normal View History

2024-02-20 11:58:22 -05:00
module.exports = {
name: 'echo',
execute (context) {
const bot = context.bot
const message = context.arguments.join(' ')
if (message.startsWith('/')) {
bot.command(message.substring(1))
return
}
bot.chat(message)
}
}