/* eslint-disable max-len */ const cowsay = require('cowsay2'); module.exports = { name: 'cowsay', alias: [], description: 'Moo', usage: '', trusted: 0, execute: function(bot, username, usernameraw, sender, prefix, args) { bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: `${cowsay.say(args.join(' '))}`})); }, };