const config = require("../config.json"); function inject (client) { function tellraw (selectors, message) { client.cmdCore.run(`minecraft:tellraw ${selectors} ${JSON.stringify(message)}`); } client.tellraw = tellraw; return tellraw; } module.exports = { inject };