FridayNightFunkinBoyfriendBot/commands/discordmsg.js
2024-02-20 17:12:40 +00:00

12 lines
268 B
JavaScript

module.exports = {
name: 'discordmsg',
description:['make me say something in discord'],
execute (context) {
const args = context.arguments
const bot = context.bot
const player = context.player
bot.discord.channel.send(args.join(' '))
}
}