FridayNightFunkinBoyfriendBot/commands/discordmsg.js

12 lines
213 B
JavaScript
Raw Permalink Normal View History

2024-02-20 11:58:22 -05:00
module.exports = {
name: 'discordmsg',
execute (context) {
const args = context.arguments
const bot = context.bot
const player = context.player
bot.discord.channel.send(args.join(' '))
}
}