FridayNightFunkinBoyfriendBot/commands/discordmsg.js
2024-02-20 16:58:22 +00:00

11 lines
213 B
JavaScript

module.exports = {
name: 'discordmsg',
execute (context) {
const args = context.arguments
const bot = context.bot
const player = context.player
bot.discord.channel.send(args.join(' '))
}
}