/* eslint-disable require-jsdoc */ /* eslint-disable max-len */ function inject (bot) { bot.tellraw = function (selector, message) { bot.core.run(`minecraft:tellraw ${selector} ${typeof message === 'string' ? message : JSON.stringify(message)}`) } }; module.exports = { inject }