19 lines
No EOL
436 B
JavaScript
19 lines
No EOL
436 B
JavaScript
const CommandError = require('../CommandModules/command_error')
|
|
|
|
module.exports = {
|
|
name: 'bruhify',
|
|
description:['bruhify text'],
|
|
aliases:['bruhifytext', 'bruh'],
|
|
trustLevel: 0,
|
|
execute (context) {
|
|
const bot = context.bot
|
|
const args = context.arguments
|
|
const message = context.arguments.join(' ')
|
|
|
|
bot.bruhifyText = args.join(' ')
|
|
|
|
context.source.sendFeedback(JSON.stringify(bot.bruhifyText))
|
|
|
|
|
|
}
|
|
} |