mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
19 lines
656 B
JavaScript
19 lines
656 B
JavaScript
const { MessageEmbed } = require('discord.js')
|
|
module.exports = {
|
|
name: 'bruhify',
|
|
alias: [],
|
|
description: 'RecycleBot bruhify but actionbar',
|
|
usage: '<message>',
|
|
trusted: 0,
|
|
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
|
|
bot.bruhifyText = args.join(' ')
|
|
},
|
|
discordExecute (bot, username, sender, prefix, args, channeldc, message, config) {
|
|
bot.bruhifyText = args.join(' ')
|
|
const Embed = new MessageEmbed()
|
|
.setColor(config.discord.embedsColors.normal)
|
|
.setTitle('Bruhify')
|
|
.setDescription(`Bruhify set to: ${bot.bruhifyText}`)
|
|
channeldc.send({ embeds: [Embed] })
|
|
}
|
|
}
|