mirror of
https://code.chipmunk.land/Parker2991/FridayNightFunkinBoyfriendBot.git
synced 2024-11-14 19:34:59 -05:00
12 lines
268 B
JavaScript
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(' '))
|
|
|
|
}
|
|
}
|